Endpoints
Users
Function
Endpoint
Description
GET /api/v1/partners/users/{user}
First you need to check if your user is already a confirmed KYC approved user.
GET /api/v1/partners/users/{user_id}/balances
Fetch users balance to ensure enough funds.
Payments & bank wire
Function
Endpoint
Description
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/exchange-rates
Fetch information related to exchange rate for selected pair
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.
Last updated