/v1/trades
Live trade tape
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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",
…