# Trade Pairs

View available trading pairs.

## Endpoints

| Method | Path                  | Description      |
| ------ | --------------------- | ---------------- |
| GET    | `/v1/trade-pairs`     | List trade pairs |
| GET    | `/v1/trade-pairs/:id` | Get trade pair   |

***

### List Trade Pairs

```
GET /v1/trade-pairs
```

**Query Parameters:**

| Parameter  | Type   | Description             |
| ---------- | ------ | ----------------------- |
| `exchange` | string | Filter by exchange name |

```bash
curl "https://rest-api.tokenbot.com/v1/trade-pairs?exchange=binance" \
  -H "X-API-Key: tb_live_your_key"
```

***

### Get Trade Pair

```
GET /v1/trade-pairs/:id
```
