Ir al contenido
GET /v1/trades

Most recent executed trades

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/bit2c-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/bit2c-api/v1/trades" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bit2c-api/v1/trades", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bit2c-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/bit2c-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": {
        "coin": "btc",
        "fiat": "ILS",
        "pair": "BTC/ILS",
        "count": 17,
        "venue": "Bit2C",
        "source": "Bit2C",
        "trades": [
            {
                "side": "sell",
                "time": "2026-06-11T18:03:41.000Z",
                "price": 195000,
                "trade_id": 2766525,
                "amount_coin": 0.00074285
            },
            {
                "side": "sell",
                "time": "2026-06-11T18:03:40.000Z",
                "price": 195000,
                "trade_id": 2766523,
                "amount_coin": 0.32008759
            },
            {
                "side": "buy",
                "time": "2026-06-11T17:30:12.000Z",
                "price": 192905.34,
                "trade_id": 2766511,
                "amount_coin": 0.005183889673556989
            },
            {
                "side": "sell",
                "time": "2026-06-11T15:01:37.000Z",
                "price": 190292,
                "trade_id": 2766484,
                "amount_coin": 0.0239
            },
            {
                "side": "buy",
                "time": "2026-06-11T14:11:23.000Z",
                "price": 190292.01,
                "trade_id": 2766476,
                "amount_coin": 0.12612195330744574
            },
            {
                "side": "sell",
                "time": "2026-06-11T14:10:25.000Z",
                "price": 190991,
                "trade_id": 2766472,
                "amount_coin": 0.00104717
            },
            {
                "side": "buy",
                "time": "2026-06-11T14:06:05.000Z",
                "price": 198618.46,
                "trade_id": 2766467,
                "amount_coin": 0.10079043005368182
            },
            {
                "side": "sell",
                "time": "2026-06-11T13:17:50.000Z",
                "price": 190731,
                "trade_id": 2766456,
                "amount_coin": 0.00443357
            },
            {
                "side": "buy",
                "time": "2026-06-11T08:57:23.000Z",
                "price": 192898.44,
                "trade_id": 2766390,
                "amount_coin": 0.02262048879192595
            },
            {
                "side": "buy",
                "time": "2026-06-11T06:20:04.000Z",
                "price": 191677.83,
                "trade_id": 2766336,
                "amount_coin": 0.0003221708008693546
            },
            {
                "side": "sell",
                "time": "2026-06-11T06:07:22.000Z",
                "price": 185718,
                "trade_id": 2766317,
                "amount_coin": 0.12767373
            },
            {
                "side": "buy",
                "time": "2026-06-11T06:01:54.000Z",
                "price": 193512.67,
                "trade_id": 2766308,
                "amount_coin": 0.08396238692476389
            },
            {
                "side": "buy",
       
…