GET
/
exchange
/
api
/
orders
/
trade-options
curl --request GET \
  --url https://onboard-external-dev.api.nestcoin.io/exchange/api/orders/trade-options
{
  "fiats": [
    {
      "name": "<string>",
      "logo": "<string>",
      "isoCode": "<string>",
      "symbol": "<string>",
      "unicodeSymbol": "<string>"
    }
  ],
  "networks": [
    {
      "networkId": "bsc_testnet",
      "name": "Binance Smart Chain Network",
      "logo": "<string>",
      "explorer": "<string>",
      "chainId": 1,
      "nativeAsset": "BNB",
      "availableTokens": [
        {
          "symbol": "USDC",
          "networkId": "<string>",
          "decimals": 123,
          "isNative": true,
          "address": "<string>"
        }
      ]
    }
  ],
  "paymentChannels": [
    {
      "paymentChannelId": "<string>",
      "name": "<string>",
      "supportedCurrencies": [
        {
          "country": "<string>",
          "currency": "<string>"
        }
      ]
    }
  ]
}

This endpoint retrieves supported fiat currencies, blockchain networks, payment channels, and transaction limits on Onboard. Use it to configure trade parameters based on user preferences.

Response

200
application/json
Success
fiats
object[]
required
networks
object[]
required
paymentChannels
object[]