> For the complete documentation index, see [llms.txt](https://3commas.gitbook.io/3commas-official-api-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://3commas.gitbook.io/3commas-official-api-docs/market-data/all-market-pairs.md).

# All market pairs

<mark style="color:blue;">`GET`</mark> `/ver1/accounts/market_pairs`

{% hint style="success" %}
This is an endpoint that does not need authentication
{% endhint %}

The method allows getting the list of pairs is supported by exchange in 3Commas' format

#### Query Parameters

| Name         | Type    | Mandatory | Description                                |
| ------------ | ------- | --------- | ------------------------------------------ |
| market\_code | integer | Yes       | Unique exchange code in the 3Commas system |

{% hint style="info" %}
Use endpoint [Supported markets list](/3commas-official-api-docs/market-data/supported-markets-list.md) to get value for parameter `market_code`.
{% endhint %}

#### Example request

```json
GET /ver1/accounts/market_pairs?market_code=binance_us
```

#### Example Response and errors

<details>

<summary>Status: 200 OK</summary>

```json
[
"BTC_ETH",
"BTC_LTC",
"BTC_BNB",
"BTC_NEO",
"ETH_QTUM",
"ETH_EOS",
"ETH_SNT",
"ETH_BNT",
"BTC_GAS",
"ETH_BNB",
"USDT_BTC",
...
]
```

</details>
