# HitBTC

HitBTC historical data for **high caps currency pairs** is available since **2019-11-19**.

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

### Downloadable **CSV** files

Not available.

### API Access and data format

Historical data format is the same as provided by real-time HitBTC WebSocket **v2** 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="hitbtc",
        from_date="2024-01-01",
        to_date="2024-01-02",
        filters=[Channel(name="updateOrderbook", symbols=["BTCUSD"])],
        api_key="YOUR_API_KEY",
    ):
        # messages as provided by HitBTC 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: 'hitbtc',
  from: '2024-01-01',
  to: '2024-01-02',
  filters: [{ channel: 'updateOrderbook', symbols: ['BTCUSD'] }],
  apiKey: 'YOUR_API_KEY'
});

// messages as provided by HitBTC 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/hitbtc?from=2024-01-01&filters=[{"channel":"updateOrderbook","symbols":["BTCUSD"]}]&offset=0'
```

{% embed url="<https://api.tardis.dev/v1/data-feeds/hitbtc?from=2024-01-01&filters=[{%22channel%22:%22updateOrderbook%22,%22symbols%22:[%22BTCUSD%22]}]&offset=0>" %}
Example API response for HitBTC 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":"hitbtc","filters":[{"channel":"updateOrderbook","symbols":["BTCUSD"]}],"from":"2024-01-01","to":"2024-01-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://api.hitbtc.com/#socket-market-data>" %}
See HitBTC 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 %}

* [updateTrades](https://api.tardis.dev/v1/data-feeds/hitbtc?from=2024-01-01\&filters=\[{%22channel%22:%22updateTrades%22}]) Incremental trade updates stream
* [snapshotOrderbook](https://api.tardis.dev/v1/data-feeds/hitbtc?from=2024-01-01\&filters=\[{%22channel%22:%22snapshotOrderbook%22}]) Full order book snapshot on subscription
* [updateOrderbook](https://api.tardis.dev/v1/data-feeds/hitbtc?from=2024-01-01\&filters=\[{%22channel%22:%22updateOrderbook%22}]) Order book incremental updates stream
* [snapshotTrades](https://api.tardis.dev/v1/data-feeds/hitbtc?from=2024-01-01\&filters=\[{%22channel%22:%22snapshotTrades%22}]) Initial trade snapshot on subscription

### Market data collection details

[Market data collection infrastructure](https://docs.tardis.dev/faq/general#what-is-your-infrastructure-setup) for HitBTC is located in GCP europe-west2 region (London, UK).

Real-time market data is captured via **single WebSocket connection** to `wss://api.hitbtc.com/api/2/ws/public`.

{% hint style="info" %}
HitBTC servers are located in Equinix ld4 (Slough, Europe).
{% endhint %}
