Get active crypto assets and active networks. Required scope: crypto-asset:read. To fund a fiat wallet with crypto, use Crypto funding under Payments instead.

GETapi-prod.blaaiz.com/api/external/crypto/assets

Authorization

oauth2ClientCredentials crypto-asset:read
AuthorizationBearer <token>

Use your OAuth client credentials to obtain a short-lived Bearer token from POST /oauth/token.

In: header

Scope: crypto-asset:read

Response Body

application/json

List crypto assets
curl --request GET \  --url 'https://example.com/api/external/crypto/assets'
{  "message": "Crypto assets retrieved successfully.",  "data": [    {      "id": 1,      "symbol": "USDC",      "name": "USD Coin",      "decimals": 6,      "networks": [        {          "network": "ETHEREUM_MAINNET",          "decimals": 6,          "contract_address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"        }      ]    }  ]}