List Supported Bridge Assets
Endpoint
Section titled “Endpoint”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.
Parameters
Section titled “Parameters”None.
Response
Section titled “Response”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."}curl "https://bridge.openfish.fun/supported-assets"