API Reference
GETPublic — no key required

List UDA-supported assets

GET /uda/supported-assets

Return every chain with UDA support enabled, along with its native currency and configured token contracts. Rows are grouped by network. This endpoint is public — no API key required.

Responses

Supported chains and assets.

    • network_idstring
    • network_namestring
    • network_symbolstring
    • eip155_idinteger
    • chain_typestringenum: EVM · TVM
Request
curl "https://api.stridge.dev/v1/uda/supported-assets"

Public endpoint — no API key required.

Response200
"network_id": "60",
"network_name": "Ethereum",
"network_symbol": "ETH",
"eip155_id": 1,
"chain_type": "EVM",
"symbol": "ETH",
"name": "Ether",
"decimals": 18,
"logo": "https://assets.stridge.com/tokens/eth.png",
"min_deposit_usd": "1.00",
"price_impact": "0"
},
"symbol": "USDC",
"name": "USD Coin",
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"decimals": 6,
"logo": "https://assets.stridge.com/tokens/usdc.png",
"min_deposit_usd": "1.00",
"price_impact": "0"
}
]
}
]
}