GET /crypto/history/:coin_id
Get historical price snapshots for any of the top 50 cryptocurrencies. Prices are recorded every 10 minutes, giving up to 144 data points per day per coin. Filter by date range or limit the number of results. Ideal for building price charts, backtesting strategies, and tracking price trends over time.
limit
optional
default: 144
Max data points (up to 1000)
start_date
optional
Start date (YYYY-MM-DD)
end_date
optional
End date (YYYY-MM-DD)
| Name | Required | Default | Description |
|---|---|---|---|
limit |
No | 144 | Max data points (up to 1000) |
start_date |
No | - | Start date (YYYY-MM-DD) |
end_date |
No | - | End date (YYYY-MM-DD) |
curl "https://nordapi.ee/api/v1/crypto/history/bitcoin?limit=10"
curl "https://nordapi.ee/api/v1/crypto/history/bitcoin?limit=10"
curl "https://nordapi.ee/api/v1/crypto/history/ethereum?start_date=2026-03-28&end_date=2026-03-28"
curl "https://nordapi.ee/api/v1/crypto/history/solana?limit=144"
{
"coin_id": "bitcoin",
"count": 169,
"data": [
{
"price_usd": 64200.18,
"recorded_at": "2026-08-05T07:00:00Z"
},
{
"price_usd": 64135.02,
"recorded_at": "2026-08-05T08:00:00Z"
},
{
"price_usd": 64058.51,
"recorded_at": "2026-08-05T09:00:00Z"
},
{
"price_usd": 64089.29,
"recorded_at": "2026-08-05T10:00:00Z"
},
{
"price_usd": 64040.49,
"recorded_at": "2026-08-05T11:00:00Z"
},
{
"price_usd": 64031.4,
"recorded_at": "2026-08-05T12:00:00Z"
},
{
"price_usd": 64271.93,
"recorded_at": "2026-08-05T13:00:00Z"
},
{
"price_usd": 64280.41,
"recorded_at": "2026-08-05T14:00:00Z"
},
{
"price_usd": 64484.77,
"recorded_at": "2026-08-05T15:00:00Z"
},
{
"price_usd": 64376.99,
"recorded_at": "2026-08-05T16:00:00Z"
},
{
"price_usd": 64610.39,
"recorded_at": "2026-08-05T17:00:00Z"
},
{
"price_usd": 64712.04,
"recorded_at": "2026-08-05T18:00:00Z"
},
{
"price_usd": 64731.42,
"recorded_at": "2026-08-05T19:00:00Z"
},
{
"price_usd": 64796.2,
"recorded_at": "2026-08-05T20:00:00Z"
},
{
"price_usd": 64718.35,
"recorded_at": "2026-08-05T21:00:00Z"
},
{
"price_usd": 64624.98,
"recorded_at": "2026-08-05T22:00:00Z"
},
{
"price_usd": 64547.73,
"recorded_at": "2026-08-05T23:00:00Z"
},
{
"price_usd": 64574.31,
"recorded_at": "2026-08-06T00:00:00Z"
},
{
"price_usd": 64582.78,
"recorded_at": "2026-08-06T01:00:00Z"
},
{
"price_usd": 64518.67,
"recorded_at": "2026-08-06T02:00:00Z"
},
{
"price_usd": 64474.72,
"recorded_at": "2026-08-06T03:00:00Z"
},
{
"price_usd": 64479.16,
"recorded_at": "2026-08-06T04:00:00Z"
},
{
"price_usd": 64702.93,
"recorded_at": "2026-08-06T05:00:00Z"
},
{
"price_usd": 64801.43,
"recorded_at": "2026-08-06T06:00:00Z"
},
{
"price_usd": 64764.65,
"recorded_at": "2026-08-06T07:00:00Z"
},
{
"price_usd": 64754.49,
"recorded_at": "2026-08-06T08:00:00Z"
},
{
"price_usd": 64842.52,
"recorded_at": "2026-08-06T09:00:00Z"
},
{
"price_usd": 64604.96,
"recorded_at": "2026-08-06T10:00:00Z"
},
{
"price_usd": 64512.35,
"recorded_at": "2026-08-06T11:00:00Z"
},
{
"price_usd": 64490.21,
"recorded_at": "2026-08-06T12:00:00Z"
},
{
"price_usd": 64335.91,
"recorded_at": "2026-08-06T13:00:00Z"
},
{
"price_usd": 64370.52,
"recorded_at": "2026-08-06T14:00:00Z"
},
{
"price_usd": 64718.86,
"recorded_at": "2026-08-06T15:00:00Z"
},
{
"price_usd": 64596.14,
"recorded_at": "2026-08-06T16:00:00Z"
},
{
"price_usd": 64758.27,
"recorded_at": "2026-08-06T17:00:00Z"
},
{
"price_usd": 64494.21,
"recorded_at": "2026-08-06T18:00:00Z"
},
{
"price_usd": 64392.98,
"recorded_at": "2026-08-06T19:00:00Z"
},
{
"price_usd": 64459.42,
"recorded_at": "2026-08-06T20:00:00Z"
},
{
"price_usd": 64430.06,
"recorded_at": "2026-08-06T21:00:00Z"
},
{
"price_usd": 64343.9,
"recorded_at": "2026-08-06T22:00:00Z"
},
{
"price_usd": 64293.67,
"recorded_at": "2026-08-06T23:00:00Z"
},
{
"price_usd": 64289.46,
"recorded_at": "2026-08-07T00:00:00Z"
},
{
"price_usd": 64328.76,
"recorded_at": "2026-08-07T01:00:00Z"
},
{
"price_usd": 64352.92,
"recorded_at": "2026-08-07T02:00:00Z"
},
{
"price_usd": 64295.39,
"recorded_at": "2026-08-07T03:00:00Z"
},
{
"price_usd": 64214.57,
"recorded_at": "2026-08-07T04:00:00Z"
},
{
"price_usd": 64194.15,
"recorded_at": "2026-08-07T05:00:00Z"
},
{
"price_usd": 64265.55,
"recorded_at": "2026-08-07T06:00:00Z"
},
{
"price_usd": 64220.5,
"recorded_at": "2026-08-07T07:00:00Z"
},
{
"price_usd": 64263.51,
"recorded_at": "2026-08-07T08:00:00Z"
},
{
"price_usd": 64605.16,
"recorded_at": "2026-08-07T09:00:00Z"
},
{
"price_usd": 64773.68,
"recorded_at": "2026-08-07T10:00:00Z"
},
{
"price_usd": 64863.56,
"recorded_at": "2026-08-07T11:00:00Z"
},
{
"price_usd": 65014.83,
"recorded_at": "2026-08-07T12:00:00Z"
},
{
"price_usd": 65159.07,
"recorded_at": "2026-08-07T13:00:00Z"
},
{
"price_usd": 64927.64,
"recorded_at": "2026-08-07T14:00:00Z"
},
{
"price_usd": 64912.92,
"recorded_at": "2026-08-07T15:00:00Z"
},
{
"price_usd": 64911.41,
"recorded_at": "2026-08-07T16:00:00Z"
},
{
"price_usd": 64733.74,
"recorded_at": "2026-08-07T17:00:00Z"
},
{
"price_usd": 64796.67,
"recorded_at": "2026-08-07T18:00:00Z"
},
{
"price_usd": 64755.43,
"recorded_at": "2026-08-07T19:00:00Z"
},
{
"price_usd": 64928.02,
"recorded_at": "2026-08-07T20:00:00Z"
},
{
"price_usd": 64932.37,
"recorded_at": "2026-08-07T21:00:00Z"
},
{
"price_usd": 64882.13,
"recorded_at": "2026-08-07T22:00:00Z"
},
{
"price_usd": 64850.57,
"recorded_at": "2026-08-07T23:00:00Z"
},
{
"price_usd": 64872.6,
"recorded_at": "2026-08-08T00:00:00Z"
},
{
"price_usd": 64882.55,
"recorded_at": "2026-08-08T01:00:00Z"
},
{
"price_usd": 64875.69,
"recorded_at": "2026-08-08T02:00:00Z"
},
{
"price_usd": 64887.64,
"recorded_at": "2026-08-08T03:00:00Z"
},
{
"price_usd": 65007.09,
"recorded_at": "2026-08-08T04:00:00Z"
},
{
"price_usd": 64972.43,
"recorded_at": "2026-08-08T05:00:00Z"
},
{
"price_usd": 64963.35,
"recorded_at": "2026-08-08T06:00:00Z"
},
{
"price_usd": 64971.66,
"recorded_at": "2026-08-08T07:00:00Z"
},
{
"price_usd": 64924.95,
"recorded_at": "2026-08-08T08:00:00Z"
},
{
"price_usd": 64960.93,
"recorded_at": "2026-08-08T09:00:00Z"
},
{
"price_usd": 64953.65,
"recorded_at": "2026-08-08T10:00:00Z"
},
{
"price_usd": 64967.04,
"recorded_at": "2026-08-08T11:00:00Z"
},
{
"price_usd": 64924.55,
"recorded_at": "2026-08-08T12:00:00Z"
},
{
"price_usd": 64969.88,
"recorded_at": "2026-08-08T13:00:00Z"
},
{
"price_usd": 64973.27,
"recorded_at": "2026-08-08T14:00:00Z"
},
{
"price_usd": 65083.31,
"recorded_at": "2026-08-08T15:00:00Z"
},
{
"price_usd": 65045.63,
"recorded_at": "2026-08-08T16:00:00Z"
},
{
"price_usd": 65039.39,
"recorded_at": "2026-08-08T17:00:00Z"
},
{
"price_usd": 65071.64,
"recorded_at": "2026-08-08T18:00:00Z"
},
{
"price_usd": 64997.55,
"recorded_at": "2026-08-08T19:00:00Z"
},
{
"price_usd": 65026.69,
"recorded_at": "2026-08-08T20:00:00Z"
},
{
"price_usd": 65034.46,
"recorded_at": "2026-08-08T21:00:00Z"
},
{
"price_usd": 64976.8,
"recorded_at": "2026-08-08T22:00:00Z"
},
{
"price_usd": 64900.2,
"recorded_at": "2026-08-08T23:00:00Z"
},
{
"price_usd": 64916.01,
"recorded_at": "2026-08-09T00:00:00Z"
},
{
"price_usd": 64949.3,
"recorded_at": "2026-08-09T01:00:00Z"
},
{
"price_usd": 64808.72,
"recorded_at": "2026-08-09T02:00:00Z"
},
{
"price_usd": 64770.24,
"recorded_at": "2026-08-09T03:00:00Z"
},
{
"price_usd": 64746.82,
"recorded_at": "2026-08-09T04:00:00Z"
},
{
"price_usd": 64743.07,
"recorded_at": "2026-08-09T05:00:00Z"
},
{
"price_usd": 64759.06,
"recorded_at": "2026-08-09T06:00:00Z"
},
{
"price_usd": 64807.18,
"recorded_at": "2026-08-09T07:00:00Z"
},
{
"price_usd": 64817.42,
"recorded_at": "2026-08-09T08:00:00Z"
},
{
"price_usd": 64781.13,
"recorded_at": "2026-08-09T09:00:00Z"
},
{
"price_usd": 64846.98,
"recorded_at": "2026-08-09T10:00:00Z"
},
{
"price_usd": 64913.94,
"recorded_at": "2026-08-09T11:00:00Z"
},
{
"price_usd": 64882.91,
"recorded_at": "2026-08-09T12:00:00Z"
},
{
"price_usd": 64929.52,
"recorded_at": "2026-08-09T13:00:00Z"
},
{
"price_usd": 65154.08,
"recorded_at": "2026-08-09T14:00:00Z"
},
{
"price_usd": 65181.09,
"recorded_at": "2026-08-09T15:00:00Z"
},
{
"price_usd": 65174.89,
"recorded_at": "2026-08-09T16:00:00Z"
},
{
"price_usd": 65177.98,
"recorded_at": "2026-08-09T17:00:00Z"
},
{
"price_usd": 65159.29,
"recorded_at": "2026-08-09T18:00:00Z"
},
{
"price_usd": 65152.75,
"recorded_at": "2026-08-09T19:00:00Z"
},
{
"price_usd": 65135.76,
"recorded_at": "2026-08-09T20:00:00Z"
},
{
"price_usd": 65097.51,
"recorded_at": "2026-08-09T21:00:00Z"
},
{
"price_usd": 65196.98,
"recorded_at": "2026-08-09T22:00:00Z"
},
{
"price_usd": 65006.43,
"recorded_at": "2026-08-09T23:00:00Z"
},
{
"price_usd": 64860.52,
"recorded_at": "2026-08-10T00:00:00Z"
},
{
"price_usd": 64964.81,
"recorded_at": "2026-08-10T01:00:00Z"
},
{
"price_usd": 65089.27,
"recorded_at": "2026-08-10T02:00:00Z"
},
{
"price_usd": 65040.53,
"recorded_at": "2026-08-10T03:00:00Z"
},
{
"price_usd": 64952.56,
"recorded_at": "2026-08-10T04:00:00Z"
},
{
"price_usd": 64963.06,
"recorded_at": "2026-08-10T05:00:00Z"
},
{
"price_usd": 65121.63,
"recorded_at": "2026-08-10T06:00:00Z"
},
{
"price_usd": 65234.54,
"recorded_at": "2026-08-10T07:00:00Z"
},
{
"price_usd": 65219.94,
"recorded_at": "2026-08-10T08:00:00Z"
},
{
"price_usd": 65155.54,
"recorded_at": "2026-08-10T09:00:00Z"
},
{
"price_usd": 64959.15,
"recorded_at": "2026-08-10T10:00:00Z"
},
{
"price_usd": 64945.77,
"recorded_at": "2026-08-10T11:00:00Z"
},
{
"price_usd": 65108.02,
"recorded_at": "2026-08-10T12:00:00Z"
},
{
"price_usd": 64841.34,
"recorded_at": "2026-08-10T13:00:00Z"
},
{
"price_usd": 64610.23,
"recorded_at": "2026-08-10T14:00:00Z"
},
{
"price_usd": 64612.78,
"recorded_at": "2026-08-10T15:00:00Z"
},
{
"price_usd": 64240.29,
"recorded_at": "2026-08-10T16:00:00Z"
},
{
"price_usd": 63815.43,
"recorded_at": "2026-08-10T17:00:00Z"
},
{
"price_usd": 63898.85,
"recorded_at": "2026-08-10T18:00:00Z"
},
{
"price_usd": 63847.68,
"recorded_at": "2026-08-10T19:00:00Z"
},
{
"price_usd": 64004.52,
"recorded_at": "2026-08-10T20:00:00Z"
},
{
"price_usd": 64064.61,
"recorded_at": "2026-08-10T21:00:00Z"
},
{
"price_usd": 63937.8,
"recorded_at": "2026-08-10T22:00:00Z"
},
{
"price_usd": 63951.46,
"recorded_at": "2026-08-10T23:00:00Z"
},
{
"price_usd": 63878.88,
"recorded_at": "2026-08-11T00:00:00Z"
},
{
"price_usd": 63944.4,
"recorded_at": "2026-08-11T01:00:00Z"
},
{
"price_usd": 64015.78,
"recorded_at": "2026-08-11T02:00:00Z"
},
{
"price_usd": 64005.58,
"recorded_at": "2026-08-11T03:00:00Z"
},
{
"price_usd": 64098.22,
"recorded_at": "2026-08-11T04:00:00Z"
},
{
"price_usd": 63963.0,
"recorded_at": "2026-08-11T05:00:00Z"
},
{
"price_usd": 63932.99,
"recorded_at": "2026-08-11T06:00:00Z"
},
{
"price_usd": 63932.62,
"recorded_at": "2026-08-11T07:00:00Z"
},
{
"price_usd": 64039.48,
"recorded_at": "2026-08-11T08:00:00Z"
},
{
"price_usd": 64078.2,
"recorded_at": "2026-08-11T09:00:00Z"
},
{
"price_usd": 64238.96,
"recorded_at": "2026-08-11T10:00:00Z"
},
{
"price_usd": 64281.72,
"recorded_at": "2026-08-11T11:00:00Z"
},
{
"price_usd": 64374.92,
"recorded_at": "2026-08-11T12:00:00Z"
},
{
"price_usd": 64295.85,
"recorded_at": "2026-08-11T13:00:00Z"
},
{
"price_usd": 64181.06,
"recorded_at": "2026-08-11T14:00:00Z"
},
{
"price_usd": 63758.71,
"recorded_at": "2026-08-11T15:00:00Z"
},
{
"price_usd": 63542.1,
"recorded_at": "2026-08-11T16:00:00Z"
},
{
"price_usd": 63462.63,
"recorded_at": "2026-08-11T17:00:00Z"
},
{
"price_usd": 63557.53,
"recorded_at": "2026-08-11T18:00:00Z"
},
{
"price_usd": 63304.52,
"recorded_at": "2026-08-11T19:00:00Z"
},
{
"price_usd": 63564.74,
"recorded_at": "2026-08-11T20:00:00Z"
},
{
"price_usd": 63677.41,
"recorded_at": "2026-08-11T21:00:00Z"
},
{
"price_usd": 63709.93,
"recorded_at": "2026-08-11T22:00:00Z"
},
{
"price_usd": 63560.38,
"recorded_at": "2026-08-11T23:00:00Z"
},
{
"price_usd": 63527.05,
"recorded_at": "2026-08-12T00:00:00Z"
},
{
"price_usd": 63688.18,
"recorded_at": "2026-08-12T01:00:00Z"
},
{
"price_usd": 63785.14,
"recorded_at": "2026-08-12T02:00:00Z"
},
{
"price_usd": 63679.47,
"recorded_at": "2026-08-12T03:00:00Z"
},
{
"price_usd": 63773.81,
"recorded_at": "2026-08-12T04:00:00Z"
},
{
"price_usd": 63718.39,
"recorded_at": "2026-08-12T05:00:00Z"
},
{
"price_usd": 63782.07,
"recorded_at": "2026-08-12T06:00:00Z"
},
{
"price_usd": 63599.71,
"recorded_at": "2026-08-12T06:40:20Z"
}
],
"days": 7,
"success": true
}