[
{
"chain": "ETHEREUM",
"tokens": [
{ "token": "USDT", "crypto_ticker": "USDT" },
{ "token": "USDC", "crypto_ticker": "USDC" }
]
},
{
"chain": "POLYGON",
"tokens": [
{ "token": "USDT", "crypto_ticker": "USDT" }
]
}
]| Field | Type | Nullable | Description |
|---|---|---|---|
chain | string | No | Blockchain network name. |
tokens | array | No | List of supported tokens for that chain. |
tokens[].token | string | No | Token symbol as used in AIO. |
tokens[].crypto_ticker | string | No | Token ticker as used by TransFi. |
chain and token values from this response when creating the linked AIO pay-in transaction and when quoting fiat.FiatCryptoMapResponse{
"type": "array",
"items": {
"type": "object",
"required": ["chain", "tokens"],
"properties": {
"chain": { "type": "string" },
"tokens": {
"type": "array",
"items": {
"type": "object",
"required": ["token", "crypto_ticker"],
"properties": {
"token": { "type": "string" },
"crypto_ticker": { "type": "string" }
}
}
}
}
}
}curl --location 'https://api.aio.cash/v2/v2/fiat/crypto-map'{
"success": true,
"msg": "ok",
"data": {}
}