# Bullish

Bullish historical data for **all its instruments** is available since **2026-04-29**.

{% embed url="<https://api.tardis.dev/v1/exchanges/bullish>" %}
See Bullish 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](/downloadable-csv-files/overview.md).

| data type             | symbol     | date       |                                                                                                          |
| --------------------- | ---------- | ---------- | -------------------------------------------------------------------------------------------------------- |
| incremental\_book\_L2 | BTCUSD     | 2026-05-01 | [Download sample](https://datasets.tardis.dev/v1/bullish/incremental_book_L2/2026/05/01/BTCUSD.csv.gz)   |
| trades                | BTCUSD     | 2026-05-01 | [Download sample](https://datasets.tardis.dev/v1/bullish/trades/2026/05/01/BTCUSD.csv.gz)                |
| quotes                | BTCUSD     | 2026-05-01 | [Download sample](https://datasets.tardis.dev/v1/bullish/quotes/2026/05/01/BTCUSD.csv.gz)                |
| book\_ticker          | BTCUSD     | 2026-05-01 | [Download sample](https://datasets.tardis.dev/v1/bullish/book_ticker/2026/05/01/BTCUSD.csv.gz)           |
| derivative\_ticker    | PERPETUALS | 2026-05-01 | [Download sample](https://datasets.tardis.dev/v1/bullish/derivative_ticker/2026/05/01/PERPETUALS.csv.gz) |
| options\_chain        | OPTIONS    | 2026-05-01 | [Download sample](https://datasets.tardis.dev/v1/bullish/options_chain/2026/05/01/OPTIONS.csv.gz)        |

### API Access and data format

Historical data format is the same as provided by real-time Bullish WebSocket API v1 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](/downloadable-csv-files/overview.md) or official [client libs](/api/quickstart.md) 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="bullish",
        from_date="2026-05-01",
        to_date="2026-05-02",
        filters=[Channel(name="V1TALevel2", symbols=["BTCUSD"])],
        api_key="YOUR_API_KEY",
    ):
        # messages as provided by Bullish real-time stream
        print(message)

asyncio.run(main())
```

See [Python client docs](/python-client/quickstart.md).
{% endtab %}

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

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

const messages = replay({
  exchange: 'bullish',
  from: '2026-05-01',
  to: '2026-05-02',
  filters: [{ channel: 'V1TALevel2', symbols: ['BTCUSD'] }],
  apiKey: 'YOUR_API_KEY'
});

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

See [Node.js client docs](/node-client/quickstart.md).
{% endtab %}

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

```bash
curl --compressed -g 'https://api.tardis.dev/v1/data-feeds/bullish?from=2026-05-01&filters=[{"channel":"V1TALevel2","symbols":["BTCUSD"]}]&offset=0'
```

{% embed url="<https://api.tardis.dev/v1/data-feeds/bullish?from=2026-05-01&filters=%5B%7B%22channel%22%3A%22V1TALevel2%22%2C%22symbols%22%3A%5B%22BTCUSD%22%5D%7D%5D&offset=0>" %}
Example API response for Bullish historical market data request
{% endembed %}

See [HTTP API docs](/api/http-api-reference.md).
{% endtab %}

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

```bash
curl -g 'localhost:8000/replay?options={"exchange":"bullish","filters":[{"channel":"V1TALevel2","symbols":["BTCUSD"]}],"from":"2026-05-01","to":"2026-05-02"}'
```

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

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

### Captured real-time channels

{% embed url="<https://docs.exchange.bullish.com/websocket/protocol/messages>" %}
See Bullish WebSocket API docs providing documentation for captured channel message format
{% endembed %}

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

* [V1TALevel2](https://api.tardis.dev/v1/data-feeds/bullish?from=2026-05-01\&filters=%5B%7B%22channel%22%3A%22V1TALevel2%22%2C%22symbols%22%3A%5B%22BTCUSD%22%5D%7D%5D) Level 2 order book snapshots and updates stream
* [V1TALevel1](https://api.tardis.dev/v1/data-feeds/bullish?from=2026-05-01\&filters=%5B%7B%22channel%22%3A%22V1TALevel1%22%2C%22symbols%22%3A%5B%22BTCUSD%22%5D%7D%5D) Level 1 top-of-book updates stream
* [V1TAAnonymousTradeUpdate](https://api.tardis.dev/v1/data-feeds/bullish?from=2026-05-01\&filters=%5B%7B%22channel%22%3A%22V1TAAnonymousTradeUpdate%22%2C%22symbols%22%3A%5B%22BTCUSD%22%5D%7D%5D) Public anonymous trade executions stream
* [V1TATickerResponse](https://api.tardis.dev/v1/data-feeds/bullish?from=2026-05-01\&filters=%5B%7B%22channel%22%3A%22V1TATickerResponse%22%2C%22symbols%22%3A%5B%22BTCUSD%22%5D%7D%5D) Best bid, best ask, last price, 24h stats, derivative and option fields stream
* [V1TAIndexPrice](https://api.tardis.dev/v1/data-feeds/bullish?from=2026-05-01\&filters=%5B%7B%22channel%22%3A%22V1TAIndexPrice%22%2C%22symbols%22%3A%5B%22BTC%22%5D%7D%5D) Index price updates stream

### Market data collection details

[Market data collection infrastructure](/faq/general.md#what-is-your-infrastructure-setup) for Bullish is located in GCP europe-west2 (London, Europe).

Real-time market data is captured via **multiple WebSocket connections** to `wss://registered.api.exchange.bullish.com`.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.tardis.dev/historical-data-details/bullish.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
