Skip to content

List Supported Bridge Assets

GET /supported-assets

Server: https://bridge.openfish.fun (port 3004)

Tags: Bridge

Call this before initiating a deposit or withdrawal to confirm that your desired chain and token combination is supported. Each entry also includes the minimum checkout threshold in USD.


None.


200 — A SupportedAssetsResponse listing every available chain/token pair.

{
"supportedAssets": [
{
"chainId": "1",
"chainName": "Ethereum",
"token": {
"name": "USD Coin",
"symbol": "USDC",
"address": "0xa0b8...",
"decimals": 6
},
"minCheckoutUsd": 10.0
},
{
"chainId": "137",
"chainName": "Polygon",
"token": {
"name": "USD Coin",
"symbol": "USDC",
"address": "0x2791...",
"decimals": 6
},
"minCheckoutUsd": 5.0
}
],
"note": "Supported chains and tokens for deposits and withdrawals."
}

Terminal window
curl "https://bridge.openfish.fun/supported-assets"