GET /bridge/currencies
GET

/v1/bridge/currencies

List available exchange currencies

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/bridge/currencies
curl 'https://api.xrpl.to/v1/bridge/currencies'

Response

200Example response6 ms · just now · 2.1 KB · 82 lines
https://api.xrpl.to/v1/bridge/currencies
[
  {
    "ticker": "btc",
    "name": "Bitcoin",
    "image": "https://content-api.changenow.io/uploads/btc_1_527dc9ec3c.svg",
    "hasExternalId": false,
    "isExtraIdSupported": false,
    "isFiat": false,
    "featured": true,
    "isStable": false,
    "supportsFixedRate": true,
    "network": "btc",
    "tokenContract": null,
    "buy": true,
    "sell": true,
    "legacyTicker": "btc"
  },
  {
    "ticker": "eth",
    "name": "Ethereum",
    "image": "https://content-api.changenow.io/uploads/eth_f4ebb54ec0.svg",
    "hasExternalId": false,
    "isExtraIdSupported": false,
    "isFiat": false,
    "featured": true,
    "isStable": false,
    "supportsFixedRate": true,
    "network": "eth",
    "tokenContract": null,
    "buy": true,
    "sell": true,
    "legacyTicker": "eth"
  },
  {
    "ticker": "eth",
    "name": "Ethereum (Binance Smart Chain)",
    "image": "https://content-api.changenow.io/uploads/ethbsc_ef444521c5.svg",
    "hasExternalId": false,
    "isExtraIdSupported": false,
    "isFiat": false,
    "featured": false,
    "isStable": false,
    "supportsFixedRate": true,
    "network": "bsc",
    "tokenContract": "0x2170ed0880ac9a755fd29b2688956bd959f933f8",
    "buy": true,
    "sell": true,
    "legacyTicker": "ethbsc"
  },
  {
    "ticker": "eth",
    "name": "Ethereum (Arbitrum)",
    "image": "https://content-api.changenow.io/uploads/etharbitrum_796401be67.svg",
    "hasExternalId": false,
    "isExtraIdSupported": false,
    "isFiat": false,
    "featured": false,
    "isStable": false,
    "supportsFixedRate": true,
    "network": "arbitrum",
    "tokenContract": null,
    "buy": true,
    "sell": true,
    "legacyTicker": "etharb"
  },
  {
    "ticker": "eth",
    "name": "Ethereum (Optimism)",
    "image": "https://content-api.changenow.io/uploads/ethop_044f371b26.svg",
    "hasExternalId": false,
    "isExtraIdSupported": false,
    "isFiat": false,
    "featured": false,
    "isStable": false,
    "supportsFixedRate": true,
    "network": "op",
    "tokenContract": null,
    "buy": true,
    "sell": true,
    "legacyTicker": "ethop"
  }
]

Long arrays and strings are shortened in the example; Send request for the full answer.

What it does

List available exchange currencies

OpenAPI