Skip to main content

1.0 Get Assets

Get available assets for a specific currency and service.

Method: GET
Endpoint: /accounts/getAssets

Query Parameters:

  • q: Query parameter (optional), send coin or fiat to filter

Response Example:

Response Example:

{
"status": 200,
"message": "assets fetched successfully",
"data": [
{
"asset_id": 2,
"type": "coin",
"service_id": 1,
"asset_code": "USDC",
"asset_name": "USDC",
"chain": "STELLAR"
},
{
"asset_id": 3,
"type": "coin",
"service_id": 1,
"asset_code": "CUSD",
"asset_name": "CUSD",
"chain": "CELO"
},
{
"asset_id": 5,
"type": "coin",
"service_id": 1,
"asset_code": "USDT",
"asset_name": "USDT",
"chain": "TRON"
},
{
"asset_id": 6,
"type": "coin",
"service_id": 1,
"asset_code": "CNGN_BSC",
"asset_name": "CNGN",
"chain": "BSC"
},
{
"asset_id": 7,
"type": "coin",
"service_id": 1,
"asset_code": "CNGN_XBN",
"asset_name": "CNGN",
"chain": "BANTU"
},
{
"asset_id": 15,
"type": "coin",
"service_id": 1,
"asset_code": "USDC_BSC",
"asset_name": "USDC",
"chain": "BSC"
},
{
"asset_id": 16,
"type": "coin",
"service_id": 1,
"asset_code": "USDC_BASE",
"asset_name": "USDC",
"chain": "BSC"
}
]
}