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": 79018.03,
"recorded_at": "2026-08-27T00:00:00Z"
},
{
"price_usd": 78702.39,
"recorded_at": "2026-08-27T01:00:00Z"
},
{
"price_usd": 78906.21,
"recorded_at": "2026-08-27T02:00:00Z"
},
{
"price_usd": 78717.17,
"recorded_at": "2026-08-27T03:00:00Z"
},
{
"price_usd": 78817.0,
"recorded_at": "2026-08-27T04:00:00Z"
},
{
"price_usd": 78761.61,
"recorded_at": "2026-08-27T05:00:00Z"
},
{
"price_usd": 78872.11,
"recorded_at": "2026-08-27T06:00:00Z"
},
{
"price_usd": 78800.49,
"recorded_at": "2026-08-27T07:00:00Z"
},
{
"price_usd": 79074.23,
"recorded_at": "2026-08-27T08:00:00Z"
},
{
"price_usd": 79691.29,
"recorded_at": "2026-08-27T09:00:00Z"
},
{
"price_usd": 79981.02,
"recorded_at": "2026-08-27T10:00:00Z"
},
{
"price_usd": 79596.89,
"recorded_at": "2026-08-27T11:00:00Z"
},
{
"price_usd": 79479.42,
"recorded_at": "2026-08-27T12:00:00Z"
},
{
"price_usd": 79292.77,
"recorded_at": "2026-08-27T13:00:00Z"
},
{
"price_usd": 79512.64,
"recorded_at": "2026-08-27T14:00:00Z"
},
{
"price_usd": 80190.32,
"recorded_at": "2026-08-27T15:00:00Z"
},
{
"price_usd": 80329.19,
"recorded_at": "2026-08-27T16:00:00Z"
},
{
"price_usd": 80381.46,
"recorded_at": "2026-08-27T17:00:00Z"
},
{
"price_usd": 80453.85,
"recorded_at": "2026-08-27T18:00:00Z"
},
{
"price_usd": 80122.89,
"recorded_at": "2026-08-27T19:00:00Z"
},
{
"price_usd": 79938.27,
"recorded_at": "2026-08-27T20:00:00Z"
},
{
"price_usd": 80083.1,
"recorded_at": "2026-08-27T21:00:00Z"
},
{
"price_usd": 80181.42,
"recorded_at": "2026-08-27T22:00:00Z"
},
{
"price_usd": 80297.0,
"recorded_at": "2026-08-27T23:00:00Z"
},
{
"price_usd": 80268.37,
"recorded_at": "2026-08-28T00:00:00Z"
},
{
"price_usd": 80591.31,
"recorded_at": "2026-08-28T01:00:00Z"
},
{
"price_usd": 80500.66,
"recorded_at": "2026-08-28T02:00:00Z"
},
{
"price_usd": 79935.57,
"recorded_at": "2026-08-28T03:00:00Z"
},
{
"price_usd": 79818.12,
"recorded_at": "2026-08-28T04:00:00Z"
},
{
"price_usd": 79647.28,
"recorded_at": "2026-08-28T05:00:00Z"
},
{
"price_usd": 79696.44,
"recorded_at": "2026-08-28T06:00:00Z"
},
{
"price_usd": 79911.61,
"recorded_at": "2026-08-28T07:00:00Z"
},
{
"price_usd": 79687.24,
"recorded_at": "2026-08-28T08:00:00Z"
},
{
"price_usd": 79513.05,
"recorded_at": "2026-08-28T09:00:00Z"
},
{
"price_usd": 79292.2,
"recorded_at": "2026-08-28T10:00:00Z"
},
{
"price_usd": 79557.56,
"recorded_at": "2026-08-28T11:00:00Z"
},
{
"price_usd": 79600.28,
"recorded_at": "2026-08-28T12:00:00Z"
},
{
"price_usd": 79407.6,
"recorded_at": "2026-08-28T13:00:00Z"
},
{
"price_usd": 79438.07,
"recorded_at": "2026-08-28T14:00:00Z"
},
{
"price_usd": 79607.77,
"recorded_at": "2026-08-28T15:00:00Z"
},
{
"price_usd": 78370.58,
"recorded_at": "2026-08-28T16:00:00Z"
},
{
"price_usd": 77798.28,
"recorded_at": "2026-08-28T17:00:00Z"
},
{
"price_usd": 77896.96,
"recorded_at": "2026-08-28T18:00:00Z"
},
{
"price_usd": 77532.28,
"recorded_at": "2026-08-28T19:00:00Z"
},
{
"price_usd": 77528.0,
"recorded_at": "2026-08-28T20:00:00Z"
},
{
"price_usd": 77398.34,
"recorded_at": "2026-08-28T21:00:00Z"
},
{
"price_usd": 77346.05,
"recorded_at": "2026-08-28T22:00:00Z"
},
{
"price_usd": 77738.78,
"recorded_at": "2026-08-28T23:00:00Z"
},
{
"price_usd": 77820.76,
"recorded_at": "2026-08-29T00:00:00Z"
},
{
"price_usd": 77727.3,
"recorded_at": "2026-08-29T01:00:00Z"
},
{
"price_usd": 77790.6,
"recorded_at": "2026-08-29T02:00:00Z"
},
{
"price_usd": 77669.87,
"recorded_at": "2026-08-29T03:00:00Z"
},
{
"price_usd": 77512.81,
"recorded_at": "2026-08-29T04:00:00Z"
},
{
"price_usd": 77645.86,
"recorded_at": "2026-08-29T05:00:00Z"
},
{
"price_usd": 77629.19,
"recorded_at": "2026-08-29T06:00:00Z"
},
{
"price_usd": 77461.03,
"recorded_at": "2026-08-29T07:00:00Z"
},
{
"price_usd": 77634.24,
"recorded_at": "2026-08-29T08:00:00Z"
},
{
"price_usd": 77634.02,
"recorded_at": "2026-08-29T09:00:00Z"
},
{
"price_usd": 77649.83,
"recorded_at": "2026-08-29T10:00:00Z"
},
{
"price_usd": 77644.02,
"recorded_at": "2026-08-29T11:00:00Z"
},
{
"price_usd": 77583.94,
"recorded_at": "2026-08-29T12:00:00Z"
},
{
"price_usd": 77583.38,
"recorded_at": "2026-08-29T13:00:00Z"
},
{
"price_usd": 77699.9,
"recorded_at": "2026-08-29T14:00:00Z"
},
{
"price_usd": 78010.76,
"recorded_at": "2026-08-29T15:00:00Z"
},
{
"price_usd": 77856.3,
"recorded_at": "2026-08-29T16:00:00Z"
},
{
"price_usd": 78020.82,
"recorded_at": "2026-08-29T17:00:00Z"
},
{
"price_usd": 78078.61,
"recorded_at": "2026-08-29T18:00:00Z"
},
{
"price_usd": 78157.98,
"recorded_at": "2026-08-29T19:00:00Z"
},
{
"price_usd": 78176.77,
"recorded_at": "2026-08-29T20:00:00Z"
},
{
"price_usd": 78124.81,
"recorded_at": "2026-08-29T21:00:00Z"
},
{
"price_usd": 78156.65,
"recorded_at": "2026-08-29T22:00:00Z"
},
{
"price_usd": 78221.79,
"recorded_at": "2026-08-29T23:00:00Z"
},
{
"price_usd": 78225.14,
"recorded_at": "2026-08-30T00:00:00Z"
},
{
"price_usd": 78184.08,
"recorded_at": "2026-08-30T01:00:00Z"
},
{
"price_usd": 78074.69,
"recorded_at": "2026-08-30T02:00:00Z"
},
{
"price_usd": 78102.99,
"recorded_at": "2026-08-30T03:00:00Z"
},
{
"price_usd": 78140.31,
"recorded_at": "2026-08-30T04:00:00Z"
},
{
"price_usd": 78098.44,
"recorded_at": "2026-08-30T05:00:00Z"
},
{
"price_usd": 78124.35,
"recorded_at": "2026-08-30T06:00:00Z"
},
{
"price_usd": 78274.4,
"recorded_at": "2026-08-30T07:00:00Z"
},
{
"price_usd": 78116.44,
"recorded_at": "2026-08-30T08:00:00Z"
},
{
"price_usd": 78068.85,
"recorded_at": "2026-08-30T09:00:00Z"
},
{
"price_usd": 78002.45,
"recorded_at": "2026-08-30T10:00:00Z"
},
{
"price_usd": 78133.05,
"recorded_at": "2026-08-30T11:00:00Z"
},
{
"price_usd": 78152.87,
"recorded_at": "2026-08-30T12:00:00Z"
},
{
"price_usd": 78735.78,
"recorded_at": "2026-08-30T13:00:00Z"
},
{
"price_usd": 78858.07,
"recorded_at": "2026-08-30T14:00:00Z"
},
{
"price_usd": 78776.41,
"recorded_at": "2026-08-30T15:00:00Z"
},
{
"price_usd": 78808.51,
"recorded_at": "2026-08-30T16:00:00Z"
},
{
"price_usd": 79316.05,
"recorded_at": "2026-08-30T17:00:00Z"
},
{
"price_usd": 79003.09,
"recorded_at": "2026-08-30T18:00:00Z"
},
{
"price_usd": 79022.04,
"recorded_at": "2026-08-30T19:00:00Z"
},
{
"price_usd": 78846.4,
"recorded_at": "2026-08-30T20:00:00Z"
},
{
"price_usd": 78587.38,
"recorded_at": "2026-08-30T21:00:00Z"
},
{
"price_usd": 78640.13,
"recorded_at": "2026-08-30T22:00:00Z"
},
{
"price_usd": 78415.92,
"recorded_at": "2026-08-30T23:00:00Z"
},
{
"price_usd": 77658.23,
"recorded_at": "2026-08-31T00:00:00Z"
},
{
"price_usd": 77910.28,
"recorded_at": "2026-08-31T01:00:00Z"
},
{
"price_usd": 77619.19,
"recorded_at": "2026-08-31T02:00:00Z"
},
{
"price_usd": 77453.8,
"recorded_at": "2026-08-31T03:00:00Z"
},
{
"price_usd": 77740.15,
"recorded_at": "2026-08-31T04:00:00Z"
},
{
"price_usd": 77612.73,
"recorded_at": "2026-08-31T05:00:00Z"
},
{
"price_usd": 77990.42,
"recorded_at": "2026-08-31T06:00:00Z"
},
{
"price_usd": 78077.86,
"recorded_at": "2026-08-31T07:00:00Z"
},
{
"price_usd": 78183.06,
"recorded_at": "2026-08-31T08:00:00Z"
},
{
"price_usd": 78465.98,
"recorded_at": "2026-08-31T09:00:00Z"
},
{
"price_usd": 78501.69,
"recorded_at": "2026-08-31T10:00:00Z"
},
{
"price_usd": 78669.88,
"recorded_at": "2026-08-31T11:00:00Z"
},
{
"price_usd": 78282.14,
"recorded_at": "2026-08-31T12:00:00Z"
},
{
"price_usd": 77902.41,
"recorded_at": "2026-08-31T13:00:00Z"
},
{
"price_usd": 77841.58,
"recorded_at": "2026-08-31T14:00:00Z"
},
{
"price_usd": 78590.31,
"recorded_at": "2026-08-31T15:00:00Z"
},
{
"price_usd": 78554.14,
"recorded_at": "2026-08-31T16:00:00Z"
},
{
"price_usd": 78623.47,
"recorded_at": "2026-08-31T17:00:00Z"
},
{
"price_usd": 78871.17,
"recorded_at": "2026-08-31T18:00:00Z"
},
{
"price_usd": 79029.07,
"recorded_at": "2026-08-31T19:00:00Z"
},
{
"price_usd": 78899.18,
"recorded_at": "2026-08-31T20:00:00Z"
},
{
"price_usd": 78848.32,
"recorded_at": "2026-08-31T21:00:00Z"
},
{
"price_usd": 78955.17,
"recorded_at": "2026-08-31T22:00:00Z"
},
{
"price_usd": 78557.8,
"recorded_at": "2026-08-31T23:00:00Z"
},
{
"price_usd": 78552.78,
"recorded_at": "2026-09-01T00:00:00Z"
},
{
"price_usd": 78630.13,
"recorded_at": "2026-09-01T01:00:00Z"
},
{
"price_usd": 78349.12,
"recorded_at": "2026-09-01T02:00:00Z"
},
{
"price_usd": 78421.83,
"recorded_at": "2026-09-01T03:00:00Z"
},
{
"price_usd": 78660.95,
"recorded_at": "2026-09-01T04:00:00Z"
},
{
"price_usd": 78698.4,
"recorded_at": "2026-09-01T05:00:00Z"
},
{
"price_usd": 79133.6,
"recorded_at": "2026-09-01T06:00:00Z"
},
{
"price_usd": 78720.24,
"recorded_at": "2026-09-01T07:00:00Z"
},
{
"price_usd": 78612.91,
"recorded_at": "2026-09-01T08:00:00Z"
},
{
"price_usd": 77869.16,
"recorded_at": "2026-09-01T09:00:00Z"
},
{
"price_usd": 77891.45,
"recorded_at": "2026-09-01T10:00:00Z"
},
{
"price_usd": 78010.96,
"recorded_at": "2026-09-01T11:00:00Z"
},
{
"price_usd": 78067.54,
"recorded_at": "2026-09-01T12:00:00Z"
},
{
"price_usd": 77981.92,
"recorded_at": "2026-09-01T13:00:00Z"
},
{
"price_usd": 78045.64,
"recorded_at": "2026-09-01T14:00:00Z"
},
{
"price_usd": 78137.79,
"recorded_at": "2026-09-01T15:00:00Z"
},
{
"price_usd": 77901.28,
"recorded_at": "2026-09-01T16:00:00Z"
},
{
"price_usd": 77571.78,
"recorded_at": "2026-09-01T17:00:00Z"
},
{
"price_usd": 77246.13,
"recorded_at": "2026-09-01T18:00:00Z"
},
{
"price_usd": 77112.94,
"recorded_at": "2026-09-01T19:00:00Z"
},
{
"price_usd": 77269.91,
"recorded_at": "2026-09-01T20:00:00Z"
},
{
"price_usd": 77410.47,
"recorded_at": "2026-09-01T21:00:00Z"
},
{
"price_usd": 77174.48,
"recorded_at": "2026-09-01T22:00:00Z"
},
{
"price_usd": 77240.8,
"recorded_at": "2026-09-01T23:00:00Z"
},
{
"price_usd": 77416.44,
"recorded_at": "2026-09-02T00:00:00Z"
},
{
"price_usd": 77170.4,
"recorded_at": "2026-09-02T01:00:00Z"
},
{
"price_usd": 76967.63,
"recorded_at": "2026-09-02T02:00:00Z"
},
{
"price_usd": 77275.44,
"recorded_at": "2026-09-02T03:00:00Z"
},
{
"price_usd": 77523.34,
"recorded_at": "2026-09-02T04:00:00Z"
},
{
"price_usd": 77525.93,
"recorded_at": "2026-09-02T05:00:00Z"
},
{
"price_usd": 77632.8,
"recorded_at": "2026-09-02T06:00:00Z"
},
{
"price_usd": 77561.77,
"recorded_at": "2026-09-02T07:00:00Z"
},
{
"price_usd": 77448.16,
"recorded_at": "2026-09-02T08:00:00Z"
},
{
"price_usd": 76818.96,
"recorded_at": "2026-09-02T09:00:00Z"
},
{
"price_usd": 76706.59,
"recorded_at": "2026-09-02T10:00:00Z"
},
{
"price_usd": 76632.62,
"recorded_at": "2026-09-02T11:00:00Z"
},
{
"price_usd": 76772.82,
"recorded_at": "2026-09-02T12:00:00Z"
},
{
"price_usd": 76591.45,
"recorded_at": "2026-09-02T13:00:00Z"
},
{
"price_usd": 77070.69,
"recorded_at": "2026-09-02T14:00:00Z"
},
{
"price_usd": 77019.26,
"recorded_at": "2026-09-02T15:00:00Z"
},
{
"price_usd": 77243.74,
"recorded_at": "2026-09-02T16:00:00Z"
},
{
"price_usd": 77155.48,
"recorded_at": "2026-09-02T17:00:00Z"
},
{
"price_usd": 77341.09,
"recorded_at": "2026-09-02T18:00:00Z"
},
{
"price_usd": 77336.11,
"recorded_at": "2026-09-02T19:00:00Z"
},
{
"price_usd": 77285.95,
"recorded_at": "2026-09-02T20:00:00Z"
},
{
"price_usd": 77385.59,
"recorded_at": "2026-09-02T21:00:00Z"
},
{
"price_usd": 77258.17,
"recorded_at": "2026-09-02T22:00:00Z"
},
{
"price_usd": 77004.75,
"recorded_at": "2026-09-02T23:00:00Z"
},
{
"price_usd": 77268.15,
"recorded_at": "2026-09-02T23:57:00Z"
}
],
"days": 7,
"success": true
}