GET

/api/v1/exchanges/market_list

Permission: NONESecurity: NONE

Returns the list of cryptocurrency markets and exchanges supported by Quentrade, including connection parameters, input fields, and whitelisted IP addresses.

Request Parameters

No parameters required for this public endpoint.

Example Request

GET/api/v1/exchanges/market_list

Response Parameters

market_namestring

Name of the exchange in the Quentrade system.

market_urlstring

The referral link to the exchange official website.

market_iconstring

The URL link to the official icon image for this exchange.

help_linkstring

The public URL to the help page with detailed instructions on connecting this exchange.

market_codestring

Unique Quentrade exchange code entity identifier.

form_fieldsobject

Contains required and optional fields necessary for connecting to the exchange.

requiredarray[object]

Shows required fields necessary for connecting to the exchange (e.g. api_key, secret, passphrase).

optionalarray[object]

Shows optional fields needed for connecting to the exchange.

available_connection_flowsarray[string]

Available exchange connection types in Quentrade ('form' for standard API key input, 'fast_connect' for OAuth quick connection).

third_party_allowedboolean

Indicates whether the exchange supports connecting third-party applications.

trusted_ipsarray[string]

The list of IP addresses that need to be whitelisted on the exchange's website for Quentrade to communicate with the exchange.

trusted_ips_input_typestring

Input format type for trusted IP addresses ('inline' or 'multiline').

fast_connect_action_namestring

Action identifier name used for the fast connection option in Quentrade.

Example Responses

supported_markets_response.json
200 OK
[
  {
    "market_name": "Binance",
    "market_url": "https://accounts.binance.com/register",
    "market_icon": "/ExchangeLogo/binance_logo.svg",
    "help_link": "https://help.quentrade.com/en/articles/how-to-connect-binance",
    "market_code": "binance",
    "form_fields": {
      "required": [
        {
          "field": "api_key",
          "localized_name": "API Key:"
        },
        {
          "field": "secret",
          "localized_name": "API Secret:"
        }
      ],
      "optional": []
    },
    "available_connection_flows": [
      "fast_connect",
      "form"
    ],
    "third_party_allowed": true,
    "trusted_ips": [
      "103.26.9.7",
      "103.26.9.15",
      "103.26.9.23",
      "103.26.9.31"
    ],
    "trusted_ips_input_type": "inline",
    "fast_connect_action_name": "binance"
  },
  {
    "market_name": "Bybit",
    "market_url": "https://www.bybit.com/register",
    "market_icon": "/ExchangeLogo/bybit_logo.svg",
    "help_link": "https://help.quentrade.com/en/articles/how-to-connect-bybit",
    "market_code": "bybit",
    "form_fields": {
      "required": [
        {
          "field": "api_key",
          "localized_name": "API Key:"
        },
        {
          "field": "secret",
          "localized_name": "API Secret:"
        }
      ],
      "optional": []
    },
    "available_connection_flows": [
      "fast_connect",
      "form"
    ],
    "third_party_allowed": true,
    "trusted_ips": [
      "103.26.9.7",
      "103.26.9.15",
      "103.26.9.23"
    ],
    "trusted_ips_input_type": "inline",
    "fast_connect_action_name": "bybit"
  },
  {
    "market_name": "OKX",
    "market_url": "https://www.okx.com/join",
    "market_icon": "/ExchangeLogo/okx_logo.svg",
    "help_link": "https://help.quentrade.com/en/articles/how-to-connect-okx",
    "market_code": "okx",
    "form_fields": {
      "required": [
        {
          "field": "api_key",
          "localized_name": "API Key:"
        },
        {
          "field": "secret",
          "localized_name": "API Secret:"
        },
        {
          "field": "passphrase",
          "localized_name": "Passphrase:"
        }
      ],
      "optional": []
    },
    "available_connection_flows": [
      "fast_connect",
      "form"
    ],
    "third_party_allowed": false,
    "trusted_ips": [
      "103.26.9.7",
      "103.26.9.15"
    ],
    "trusted_ips_input_type": "inline",
    "fast_connect_action_name": "okx"
  }
]