Skip to content
GET /v1/trades

Live trade tape

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/bitfinex-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/bitfinex-api/v1/trades" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitfinex-api/v1/trades", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitfinex-api/v1/trades");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/bitfinex-api/v1/trades",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "pair": "BTCUSD",
        "count": 20,
        "source": "Bitfinex",
        "symbol": "tBTCUSD",
        "trades": [
            {
                "id": 1933459449,
                "side": "sell",
                "time": "2026-06-09T11:38:06.301Z",
                "price": 62634,
                "amount": 0.0002
            },
            {
                "id": 1933459448,
                "side": "sell",
                "time": "2026-06-09T11:38:06.300Z",
                "price": 62635,
                "amount": 0.0002
            },
            {
                "id": 1933459446,
                "side": "sell",
                "time": "2026-06-09T11:38:06.060Z",
                "price": 62638,
                "amount": 0.0002
            },
            {
                "id": 1933459444,
                "side": "sell",
                "time": "2026-06-09T11:38:06.059Z",
                "price": 62640,
                "amount": 0.0002
            },
            {
                "id": 1933459445,
                "side": "sell",
                "time": "2026-06-09T11:38:06.059Z",
                "price": 62639,
                "amount": 0.0002
            },
            {
                "id": 1933459442,
                "side": "sell",
                "time": "2026-06-09T11:38:05.736Z",
                "price": 62646,
                "amount": 0.0002
            },
            {
                "id": 1933459441,
                "side": "buy",
                "time": "2026-06-09T11:38:03.125Z",
                "price": 62649,
                "amount": 0.00055
            },
            {
                "id": 1933459440,
                "side": "sell",
                "time": "2026-06-09T11:38:02.223Z",
                "price": 62642,
                "amount": 0.0001553
            },
            {
                "id": 1933459439,
                "side": "sell",
                "time": "2026-06-09T11:38:02.221Z",
                "price": 62642,
                "amount": 0.0002
            },
            {
                "id": 1933459434,
                "side": "sell",
                "time": "2026-06-09T11:38:02.139Z",
                "price": 62646,
                "amount": 0.0002
            },
            {
                "id": 1933459435,
                "side": "sell",
                "time": "2026-06-09T11:38:02.139Z",
                "price": 62645,
                "amount": 0.10432
            },
            {
                "id": 1933459433,
                "side": "sell",
                "time": "2026-06-09T11:38:02.138Z",
                "price": 62647,
                "amount": 0.0002
            },
            {
                "id": 1933459432,
                "side": "sell",
                "time": "2026-06-09T11:38:02.138Z",
                "price": 62648,
                "amount": 0.0001553
            },
            {
                "id": 1933459431,
                "side": "sell",
               
…