Skip to content
GET /v1/trades

Most recent executed trades

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/independentreserve-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/independentreserve-api/v1/trades" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/independentreserve-api/v1/trades", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/independentreserve-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/independentreserve-api/v1/trades",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "coin": "eth",
        "fiat": "sgd",
        "pair": "ETH/SGD",
        "count": 20,
        "venue": "Independent Reserve",
        "source": "Independent Reserve",
        "trades": [
            {
                "price": 2135.1,
                "amount_coin": 0.01172023,
                "timestamp_utc": "2026-06-12T01:33:01.7945973Z",
                "value_in_fiat": 25.02
            },
            {
                "price": 2138.69,
                "amount_coin": 0.262,
                "timestamp_utc": "2026-06-12T01:21:15.523494Z",
                "value_in_fiat": 560.34
            },
            {
                "price": 2141.55,
                "amount_coin": 0.00464628,
                "timestamp_utc": "2026-06-12T01:13:39.6849781Z",
                "value_in_fiat": 9.95
            },
            {
                "price": 2148.23,
                "amount_coin": 0.00357694,
                "timestamp_utc": "2026-06-12T00:52:19.6430726Z",
                "value_in_fiat": 7.68
            },
            {
                "price": 2146.9,
                "amount_coin": 0.13904115,
                "timestamp_utc": "2026-06-12T00:24:13.0836326Z",
                "value_in_fiat": 298.51
            },
            {
                "price": 2156.69,
                "amount_coin": 0.09227333,
                "timestamp_utc": "2026-06-11T21:26:19.2487686Z",
                "value_in_fiat": 199
            },
            {
                "price": 2148.48,
                "amount_coin": 0.09262593,
                "timestamp_utc": "2026-06-11T21:06:00.0966403Z",
                "value_in_fiat": 199
            },
            {
                "price": 2147.43,
                "amount_coin": 0.04633561,
                "timestamp_utc": "2026-06-11T20:56:21.4890071Z",
                "value_in_fiat": 99.5
            },
            {
                "price": 2157.96,
                "amount_coin": 0.04666,
                "timestamp_utc": "2026-06-11T19:19:31.5980232Z",
                "value_in_fiat": 100.69
            },
            {
                "price": 2164.52,
                "amount_coin": 1.16221615,
                "timestamp_utc": "2026-06-11T18:34:43.0590242Z",
                "value_in_fiat": 2515.64
            },
            {
                "price": 2109.31,
                "amount_coin": 4.94016541,
                "timestamp_utc": "2026-06-11T17:28:49.5355327Z",
                "value_in_fiat": 10420.34
            },
            {
                "price": 2113.17,
                "amount_coin": 0.00235434,
                "timestamp_utc": "2026-06-11T17:00:35.1392818Z",
                "value_in_fiat": 4.98
            },
            {
                "price": 2117.6,
                "amount_coin": 0.23494164,
                "timestamp_utc": "2026-06-11T16:42:54.5026068Z",
                "value_in_fiat": 497.51
            },
            {
                "price": 2120.7,
                "amount
…