Crypto funding

Retrieve all available blockchain networks and their supported tokens. Required scope: collection:crypto:create.

GETapi-prod.blaaiz.com/api/external/collection/crypto/networks

Authorization

oauth2ClientCredentials collection:crypto:create
AuthorizationBearer <token>

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

In: header

Scope: collection:crypto:create

Header Parameters

Accept?string

Content type header.

Default"application/json"

Response Body

application/json

application/json

Get crypto networks
curl --request GET \  --url 'https://example.com/api/external/collection/crypto/networks'
{  "message": "Crypto networks retrieved successfully.",  "data": {    "success": true,    "message": "Networks fetched successfully",    "status": 200,    "data": [      {        "id": 1,        "name": "Ethereum Mainnet",        "identifier": "ETHEREUM_MAINNET",        "tokens": [          {            "id": 1,            "name": "USDT",            "symbol": "USDT",            "address": "0x1234567890"          },          {            "id": 2,            "name": "USDC",            "symbol": "USDC",            "address": "0x0987654321"          }        ]      },      {        "id": 2,        "name": "Polygon Mainnet",        "identifier": "MATIC_MAINNET",        "tokens": [          {            "id": 1,            "name": "USDT",            "symbol": "USDT",            "address": "0x1234567890"          }        ]      }    ]  }}