# Bitstamp

{% hint style="info" %}
Exchange status: not available for individual order
{% endhint %}

Bitstamp historical data for **all its currency pairs** is available since **2019-03-30**.

{% embed url="<https://api.tardis.dev/v1/exchanges/bitstamp>" %}
See Bitstamp 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 | BTCUSD | 2019-07-01 | [Download sample](https://datasets.tardis.dev/v1/bitstamp/incremental_book_L2/2019/07/01/BTCUSD.csv.gz) |
| trades                | BTCUSD | 2019-07-01 | [Download sample](https://datasets.tardis.dev/v1/bitstamp/trades/2019/07/01/BTCUSD.csv.gz)              |
| quotes                | BTCUSD | 2019-07-01 | [Download sample](https://datasets.tardis.dev/v1/bitstamp/quotes/2019/07/01/BTCUSD.csv.gz)              |

### API Access and data format

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

// messages as provided by Bitstamp 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/bitstamp?from=2023-03-01&filters=[{"channel":"diff_order_book","symbols":["btcusd"]}]&offset=0'
```

{% embed url="<https://api.tardis.dev/v1/data-feeds/bitstamp?from=2023-03-01&filters=[{%22channel%22:%22diff_order_book%22,%22symbols%22:[%22btcusd%22]}]&offset=0>" %}
Example API response for Bitstamp 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":"bitstamp","filters":[{"channel":"diff_order_book","symbols":["btcusd"]}],"from":"2023-03-01","to":"2023-03-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://www.bitstamp.net/websocket/v2/>" %}
See Bitstamp 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 %}

* [live\_trades](https://api.tardis.dev/v1/data-feeds/bitstamp?from=2024-01-01\&filters=\[{%22channel%22:%22live_trades%22}]) Public trade executions stream
* [diff\_order\_book](https://api.tardis.dev/v1/data-feeds/bitstamp?from=2024-01-01\&filters=\[{%22channel%22:%22diff_order_book%22}]) Order book delta stream
* [live\_orders](https://api.tardis.dev/v1/data-feeds/bitstamp?from=2024-01-01\&filters=\[{%22channel%22:%22live_orders%22}]) Level 3 live order events stream

Bitstamp real-time WebSocket API **does not provide initial full order book snapshots** for `diff_order_book` and `live_orders` channels subscriptions. To overcome this issue we fetch initial order book snapshots from REST API and store them together with the rest of the WebSocket messages. Such snapshot messages are marked with `"event": "snapshot"` and `"generated": true` fields for respective channels.

### Market data collection details

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

Real-time market data is captured via **multiple WebSocket connections** to `wss://ws.bitstamp.net`.

{% hint style="info" %}
Bitstamp servers are located in AWS eu-central-1 region (Frankfurt, Germany).
{% endhint %}
