# 1.7 Trading Pairs

```
GET /currencies/{currency_id}/pairs
```

**Path Parameters**

| Parameter    | Type   | Required | Description |
| ------------ | ------ | -------- | ----------- |
| currency\_id | String | Yes      | Currency ID |

**Query Parameters**

| Parameter  | Type    | Required | Description                                   |
| ---------- | ------- | -------- | --------------------------------------------- |
| page       | integer | No       | Page number                                   |
| page\_size | integer | No       | Items per page, default 20, max 100           |
| order\_by  | string  | No       | Sort field; defaults to 24h volume descending |
| exchange   | string  | No       | Filter by exchange                            |

**Response Example**

```json
{
    "list": [
        {
            "base": "BTC",
            "target": "USDT",
            "market": "Binance",
            "price": 69476,
            "turnover_24h": 20242,
            "cost_to_move_up_usd": 19320706.3958517,
            "cost_to_move_down_usd": 16360235.3694131
        }
    ],
    "page": 1,
    "page_size": 100,
    "total": 542
}
```

**Response Fields**

| Field                     | Type   | Description                                |
| ------------------------- | ------ | ------------------------------------------ |
| base                      | String | Base currency                              |
| target                    | String | Quote currency                             |
| market                    | String | Exchange name                              |
| price                     | Number | Latest price                               |
| turnover\_24h             | Number | 24-hour trading volume                     |
| cost\_to\_move\_up\_usd   | Number | +2% depth (USD cost to push price up 2%)   |
| cost\_to\_move\_down\_usd | Number | -2% depth (USD cost to push price down 2%) |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://sosovalue-1.gitbook.io/sosovalue-api-doc/1.-currency-and-pairs/pairs.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
