/v1/trades
Recent public trades for a market
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/paradex-api/v1/trades" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/paradex-api/v1/trades", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/paradex-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/paradex-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": "ETH-USD-PERP",
"trades": [
{
"id": "1781522149960201709237990004",
"side": "SELL",
"size": 0.4297,
"price": 1740.54,
"created_at": 1781522149965
},
{
"id": "1781522149960201709237990002",
"side": "BUY",
"size": 0.4297,
"price": 1740.4,
"created_at": 1781522149965
},
{
"id": "1781522143650201709237990004",
"side": "BUY",
"size": 5.5152,
"price": 1741.27,
"created_at": 1781522143662
},
{
"id": "1781522143650201709237990003",
"side": "BUY",
"size": 0.2302,
"price": 1741.23,
"created_at": 1781522143662
},
{
"id": "1781522142650201709237990006",
"side": "SELL",
"size": 2.239,
"price": 1740.94,
"created_at": 1781522142662
},
{
"id": "1781522142650201709237990005",
"side": "SELL",
"size": 1.1067,
"price": 1740.99,
"created_at": 1781522142662
},
{
"id": "1781522142650201709237990004",
"side": "SELL",
"size": 2.3997,
"price": 1741,
"created_at": 1781522142662
},
{
"id": "1781522134970201709237990001",
"side": "SELL",
"size": 0.0233,
"price": 1740.33,
"created_at": 1781522134977
},
{
"id": "1781522133940201709237990007",
"side": "BUY",
"size": 0.0233,
"price": 1740.31,
"created_at": 1781522133952
},
{
"id": "1781522078340201709237990001",
"side": "BUY",
"size": 0.0086,
"price": 1740.43,
"created_at": 1781522078346
},
{
"id": "1781521926800201709237990002",
"side": "SELL",
"size": 0.7226,
"price": 1739.2,
"created_at": 1781521926813
},
{
"id": "1781521926800201709237990001",
"side": "SELL",
"size": 0.2774,
"price": 1739.25,
"created_at": 1781521926813
},
{
"id": "1781521912290201709237990004",
"side": "SELL",
"size": 0.1494,
"price": 1739.97,
"created_at": 1781521912296
…