Zum Inhalt springen
GET /v1/trades

Live trade tape

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/bitfinex-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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",
               
…