/v1/trades
Recent public 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/poloniex-api/v1/trades" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/poloniex-api/v1/trades", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/poloniex-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/poloniex-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": 25,
"market": "BTC_USDT",
"source": "Poloniex",
"trades": [
{
"id": "218534570",
"side": "SELL",
"price": 62761.54,
"value": 1806.21435966,
"amount": 0.028779,
"timestamp": 1781164159224
},
{
"id": "218534569",
"side": "BUY",
"price": 62761.54,
"value": 2530.04320048,
"amount": 0.040312,
"timestamp": 1781164159224
},
{
"id": "218534568",
"side": "BUY",
"price": 62750.73,
"value": 2599.95099609,
"amount": 0.041433,
"timestamp": 1781164157780
},
{
"id": "218534567",
"side": "BUY",
"price": 62750.73,
"value": 2599.95099609,
"amount": 0.041433,
"timestamp": 1781164157780
},
{
"id": "218534566",
"side": "BUY",
"price": 62757.51,
"value": 938.91510711,
"amount": 0.014961,
"timestamp": 1781164154429
},
{
"id": "218534565",
"side": "BUY",
"price": 62757.51,
"value": 1079.68020204,
"amount": 0.017204,
"timestamp": 1781164154429
},
{
"id": "218534564",
"side": "SELL",
"price": 62749.88,
"value": 2599.97852792,
"amount": 0.041434,
"timestamp": 1781164151002
},
{
"id": "218534563",
"side": "BUY",
"price": 62749.88,
"value": 2599.97852792,
"amount": 0.041434,
"timestamp": 1781164151002
},
{
"id": "218534562",
"side": "SELL",
"price": 62738.19,
"value": 2599.99606998,
"amount": 0.041442,
"timestamp": 1781164149858
},
{
"id": "218534561",
"side": "BUY",
"price": 62738.19,
"value": 2599.99606998,
"amount": 0.041442,
"timestamp": 1781164149853
},
{
"id": "218534560",
"side": "BUY",
"price": 62741.44,
"value": 1324.09534976,
"amount": 0.021104,
"timestamp": 1781164148903
},
{
"id": "218534559",
"side": "BUY",
"price": 62741.44,
"value": 12
…