Endpoints

Users

Function

Endpoint

Description

POST /api/v1/partners/users

Create a new user for the person using your integration.

GET /api/v1/partners/users/{user}

First you need to check if your user is already a confirmed KYC approved user.

POST /api/v1/partners/users

Update the user for the person using your integration.

GET /api/v1/partners/users/{user_id}/balances

Fetch users balance to ensure enough funds.

GET /api/v1/partners/balances

Fetch the master users balance.

Payments & bank wire

Function

Endpoint

Description

POST /api/v1/partners/users/{user_id}/bank-accounts

Deprecated

GET /api/v1/partners/users/{user}/bank-accounts

Fetch details of all bank accounts for the person using your integration

GET /api/v1/partners/users/{user}/bank-accounts/{bankId}

Fetch details of a bank account for the person using your integration

DELETE /api/v1/partners/users/{user}/bank-accounts/{bankId}

Delete a bank account for the person using your integration

GET /api/v1/partners/users/{user}/deposit-instructions

Fetch deposit instructions to be displayed to the person using your integration

GET /api/v1/partners/users/{user}/limits?type=fiat_deposit

returns the information about the user’s limits with optional parameter type which can be fiat_withdrawal or fiat_deposit

POST /api/v1/partners/users/{user}/withdraw

Make withdrawal of FIAT to bank account for your user.

Crypto exchange & wallet

Function

Endpoint

Description

GET /api/v1/partners/pairs

Fetch a list of available exchange pairs to display to your user.

GET /api/v1/partners/exchange-rates

Fetch information related to exchange rate for selected pair

POST /api/v1/partners/users/{user}/buy

Complete buy order for selected pair

POST /api/v1/partners/users/{user}/sell

Complete sell order for selected pair

GET /api/v1/partners/currencies

Fetch a list of available currencies

GET /api/v1/partners/users-transactions

Fetch a list of transactions for all users.

GET /api/v1/partners/users/{user}/transactions

Fetch a list of transactions for a specific user.

GET /api/v1/partners/users/{user}/transactions/{transactionId}

Fetch a specific transaction for a specific user.

GET /api/v1/partners/limits/minimum

Fetch minimum buy or sell amount

Last updated