# Coinbase International

Coinbase International historical data for **all its instruments** is available since **2024-10-31**.

{% embed url="<https://api.tardis.dev/v1/exchanges/coinbase-international>" %}
See Coinbase International historical data coverage: available symbols, channels, date ranges and incidents
{% endembed %}

### Downloadable **CSV** files

Historical CSV datasets for the first day of each month are **available to download without API key**. See [downloadable CSV files documentation](https://docs.tardis.dev/downloadable-csv-files/overview).

| data type             | symbol   | date       |                                                                                                                         |
| --------------------- | -------- | ---------- | ----------------------------------------------------------------------------------------------------------------------- |
| incremental\_book\_L2 | BTC-PERP | 2025-01-01 | [Download sample](https://datasets.tardis.dev/v1/coinbase-international/incremental_book_L2/2025/01/01/BTC-PERP.csv.gz) |
| trades                | BTC-PERP | 2025-01-01 | [Download sample](https://datasets.tardis.dev/v1/coinbase-international/trades/2025/01/01/BTC-PERP.csv.gz)              |
| derivative\_ticker    | BTC-PERP | 2025-01-01 | [Download sample](https://datasets.tardis.dev/v1/coinbase-international/derivative_ticker/2025/01/01/BTC-PERP.csv.gz)   |

### API Access and data format

Historical data format is the same as provided by real-time Coinbase International WebSocket API with addition of local timestamps. If you'd like to work with **normalized data format** instead (same format for each exchange) see [downloadable CSV files](https://docs.tardis.dev/downloadable-csv-files/overview) or official [client libs](https://docs.tardis.dev/api/quickstart) that can perform data normalization client-side.

{% tabs %}
{% tab title="Python" %}

```python
# pip install tardis-dev
import asyncio
from tardis_dev import Channel, replay

async def main():
    async for local_timestamp, message in replay(
        exchange="coinbase-international",
        from_date="2024-11-01",
        to_date="2024-11-02",
        filters=[Channel(name="LEVEL2", symbols=["BTC-PERP"])],
        api_key="YOUR_API_KEY",
    ):
        # messages as provided by Coinbase International real-time stream
        print(message)

asyncio.run(main())
```

See [Python client docs](https://docs.tardis.dev/python-client/quickstart).
{% endtab %}

{% tab title="Node.js" %}

```javascript
// npm install tardis-dev
import { replay } from 'tardis-dev';

const messages = replay({
  exchange: 'coinbase-international',
  from: '2024-11-01',
  to: '2024-11-02',
  filters: [{ channel: 'LEVEL2', symbols: ['BTC-PERP'] }],
  apiKey: 'YOUR_API_KEY'
});

// messages as provided by Coinbase International real-time stream
for await (const { localTimestamp, message } of messages) {
  console.log(localTimestamp, message);
}
```

See [Node.js client docs](https://docs.tardis.dev/node-client/quickstart).
{% endtab %}

{% tab title="cURL & HTTP API" %}

```bash
curl --compressed -g 'https://api.tardis.dev/v1/data-feeds/coinbase-international?from=2024-11-01&filters=[{"channel":"LEVEL2","symbols":["BTC-PERP"]}]&offset=0'
```

{% embed url="<https://api.tardis.dev/v1/data-feeds/coinbase-international?from=2024-11-01&filters=[{%22channel%22:%22LEVEL2%22,%22symbols%22:[%22BTC-PERP%22]}]&offset=0>" %}
Example API response for Coinbase International historical market data request
{% endembed %}

See [HTTP API docs](https://docs.tardis.dev/api/http-api-reference).
{% endtab %}

{% tab title="cURL & tardis-machine" %}

```bash
curl -g 'localhost:8000/replay?options={"exchange":"coinbase-international","filters":[{"channel":"LEVEL2","symbols":["BTC-PERP"]}],"from":"2024-11-01","to":"2024-11-02"}'
```

[Tardis-machine](https://docs.tardis.dev/tardis-machine/quickstart) is a locally runnable server that exposes API allowing efficiently requesting historical market data for whole time periods in contrast to [HTTP API](https://docs.tardis.dev/api/http-api-reference) that provides data only in minute by minute slices.

See [tardis-machine](https://docs.tardis.dev/tardis-machine/quickstart) docs.
{% endtab %}
{% endtabs %}

### Captured real-time channels

{% embed url="<https://docs.cdp.coinbase.com/international-exchange/websocket-feed/channels>" %}
See Coinbase International WebSocket API docs providing documentation for each captured channel's format
{% endembed %}

{% hint style="info" %}
Click any channel below to see [HTTP API](https://docs.tardis.dev/api/http-api-reference#data-feeds-exchange) response with historical data recorded for it.
{% endhint %}

* [MATCH](https://api.tardis.dev/v1/data-feeds/coinbase-international?from=2025-01-01\&filters=\[{%22channel%22:%22MATCH%22}]) Trade match events stream
* [LEVEL2](https://api.tardis.dev/v1/data-feeds/coinbase-international?from=2025-01-01\&filters=\[{%22channel%22:%22LEVEL2%22,%22symbols%22:\[%22BTC-PERP%22]}]) Order book snapshots and deltas
* [LEVEL1](https://api.tardis.dev/v1/data-feeds/coinbase-international?from=2025-01-01\&filters=\[{%22channel%22:%22LEVEL1%22,%22symbols%22:\[%22BTC-PERP%22]}]) Top of book bid and ask updates
* [FUNDING](https://api.tardis.dev/v1/data-feeds/coinbase-international?from=2025-01-01\&filters=\[{%22channel%22:%22FUNDING%22}]) Funding rate and next funding time updates
* [RISK](https://api.tardis.dev/v1/data-feeds/coinbase-international?from=2025-01-01\&filters=\[{%22channel%22:%22RISK%22}]) Risk parameter updates
* [INSTRUMENTS](https://api.tardis.dev/v1/data-feeds/coinbase-international?from=2025-01-01\&filters=\[{%22channel%22:%22INSTRUMENTS%22}]) Instrument metadata and trading state updates
* [CANDLES\_ONE\_MINUTE](https://api.tardis.dev/v1/data-feeds/coinbase-international?from=2025-01-01\&filters=\[{%22channel%22:%22CANDLES_ONE_MINUTE%22}]) One minute candle updates

### Market data collection details

[Market data collection infrastructure](https://docs.tardis.dev/faq/general#what-is-your-infrastructure-setup) for Coinbase International is located in GCP asia-northeast1 region (Tokyo, Japan).

Real-time market data is captured via **multiple WebSocket connections** to `wss://ws-md.international.coinbase.com`.

{% hint style="info" %}
Coinbase International servers are located in AWS ap-northeast-1 region (Tokyo, Japan).
{% endhint %}
