# Paribu Exchange API
> Live spot market data from Paribu, Turkey's largest crypto exchange, served straight from its public ticker feed — no key on the data, nothing cached, nothing stored. Look up any market for its last price, best bid/ask and spread, 24h high/low/average, 24h change and base/quote volume; rank every market for a quote currency (Turkish lira TL/TRY, or USDT) by 24h turnover; or list the tradable pairs with their base and quote. Markets are addressed BASE_QUOTE (BTC_TL); TRY is accepted as an alias for the lira. This is the Paribu venue specifically — a distinct Turkish-lira price feed for a high-adoption, high-volatility market, separate from the USD/USDT-quoted exchange APIs in the catalogue. Ticker-only: Paribu exposes no public order book, so the best bid/ask travel inside the ticker.

## Authentication
All requests require your oanor API key in the `x-oanor-key` header. Get one at https://www.oanor.com/developer/keys.

```bash
curl -H "x-oanor-key: oanor_live_…" "https://api.oanor.com/paribu-api/..."
```

## Pricing
- **Free** (Free) — 20,000 calls/Mo, 3 req/s
- **Starter** ($8/Mo) — 275,000 calls/Mo, 10 req/s
- **Growth** ($23/Mo) — 1,240,000 calls/Mo, 25 req/s
- **Scale** ($53/Mo) — 4,150,000 calls/Mo, 50 req/s

## Endpoints

### Ticker

#### `GET /v1/ticker` — Ticker for one market

**Parameters:**
- `market` (query, optional, string) — Market as BTC_TL Example: `BTC_TL`
- `base` (query, optional, string) — Base asset (with quote=) Example: `ETH`
- `quote` (query, optional, string) — Quote currency TL/TRY or USDT Example: `TL`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/paribu-api/v1/ticker?market=BTC_TL&base=ETH&quote=TL"
```

### Tickers

#### `GET /v1/tickers` — All markets for a quote ranked by 24h turnover

**Parameters:**
- `quote` (query, optional, string) — Quote currency TL/TRY or USDT Example: `TL`
- `limit` (query, optional, string) — Max results (1-400) Example: `50`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/paribu-api/v1/tickers?quote=TL&limit=50"
```

### Markets

#### `GET /v1/markets` — Tradable pairs with base/quote

**Parameters:**
- `quote` (query, optional, string) — Filter by quote currency Example: `TL`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/paribu-api/v1/markets?quote=TL"
```

### Meta

#### `GET /v1/meta` — Service metadata

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/paribu-api/v1/meta"
```


---
Marketplace page: https://www.oanor.com/api/paribu-api
OpenAPI spec: https://www.oanor.com/api/paribu-api/openapi.json
