Pagination list exchange accounts
GET {{baseUrl}}/exchange_accounts/paged?limit=3
Returns a page include exchange accounts.
Body
PARAM
Key | Datatype | Required | Description |
before
|
string | ||
after
|
string | ||
limit
|
number | (Required) number of exchanges per page |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
[
{
"ExchangeAccount": [
{
"id": "<string>",
"type": "BITTREX",
"name": "<string>",
"status": "<string>",
"assets": [
{
"id": "<string>",
"balance": "<string>",
"lockedAmount": "<string>",
"total": "<string>",
"available": "<string>",
"credit": "<string>"
},
{
"id": "<string>",
"balance": "<string>",
"lockedAmount": "<string>",
"total": "<string>",
"available": "<string>",
"credit": "<string>"
}
],
"success": "<boolean>",
"tradingAccounts": [
{
"type": "<string>",
"name": "<string>",
"assets": [
{
"id": "<string>",
"balance": "<string>",
"lockedAmount": "<string>",
"total": "<string>",
& Curl curl -X GET 'https://api.fireblocks.io/v1/exchange_accounts/paged?limit=3?before=<string>&after=<string>&limit=3' -H 'Accept: application/json' ENDPOINTS |