# Supported Exchanges

List exchanges supported by TokenBot.

## Endpoints

| Method | Path                      | Description              |
| ------ | ------------------------- | ------------------------ |
| GET    | `/v1/supported-exchanges` | List supported exchanges |

***

### List Supported Exchanges

```
GET /v1/supported-exchanges
```

No authentication required.

```bash
curl https://rest-api.tokenbot.com/v1/supported-exchanges
```

**Response:**

```json
{
  "success": true,
  "data": [
    {
      "id": "binance",
      "name": "Binance",
      "trading_types": ["spot", "margin", "perpetual"],
      "is_active": true
    }
  ]
}
```
