/v1/trades
Recent trades
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/binance-api/v1/trades" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/binance-api/v1/trades", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/binance-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/binance-api/v1/trades",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 50,
"symbol": "BTCUSDT",
"trades": [
{
"id": 6385337393,
"qty": 8.0e-5,
"time": 1780881614164,
"price": 63032,
"quote_qty": 5.04256,
"is_buyer_maker": false
},
{
"id": 6385337394,
"qty": 8.0e-5,
"time": 1780881614164,
"price": 63032,
"quote_qty": 5.04256,
"is_buyer_maker": false
},
{
"id": 6385337395,
"qty": 8.0e-5,
"time": 1780881614164,
"price": 63032.2,
"quote_qty": 5.042576,
"is_buyer_maker": false
},
{
"id": 6385337396,
"qty": 9.0e-5,
"time": 1780881614164,
"price": 63032.22,
"quote_qty": 5.6728998,
"is_buyer_maker": false
},
{
"id": 6385337397,
"qty": 9.0e-5,
"time": 1780881614164,
"price": 63032.22,
"quote_qty": 5.6728998,
"is_buyer_maker": false
},
{
"id": 6385337398,
"qty": 8.0e-5,
"time": 1780881614164,
"price": 63032.37,
"quote_qty": 5.0425896,
"is_buyer_maker": false
},
{
"id": 6385337399,
"qty": 8.0e-5,
"time": 1780881614164,
"price": 63032.37,
"quote_qty": 5.0425896,
"is_buyer_maker": false
},
{
"id": 6385337400,
"qty": 0.00259,
"time": 1780881614164,
"price": 63032.85,
"quote_qty": 163.2550815,
"is_buyer_maker": false
},
{
"id": 6385337401,
"qty": 0.00041,
"time": 1780881614164,
"price": 63032.85,
"quote_qty": 25.8434685,
"is_buyer_maker": false
},
{
"id": 6385337402,
"qty": 9.0e-5,
"time": 1780881614164,
"price": 63033.22,
"quote_qty": 5.6729898,
"is_buyer_maker": false
},
{
"id": 6385337403,
"qty": 0.00475,
"time": 1780881614164,
"price": 63033.31,
"quote_qty": 299.4082225,
"is_buyer_maker": false
},
{
"id": 6385337404,
"qty": 9.0e-5,
"time": 1780881614164,
"price": 63033.99,
"quote_qty": 5.673059
…