Last updated 8 days ago
Returns the current Bitcoin price in USD along with the timestamp
curl -L \ --url 'https://api.ordnull.site/v3/x/btc/price'
{ "data": { "time": 1, "price_usd": "text" }, "block_height": 1 }
Returns historical Bitcoin prices for a range of blocks starting from a specified block height
The block height to start retrieving prices from
The number of block prices to retrieve
curl -L \ --url 'https://api.ordnull.site/v3/x/btc/price_history?start_block_height=1&count=1' \ --header 'x-api-Key: YOUR_API_KEY'
{ "data": [ { "block_height": 1, "block_time": 1, "price_usd": "text" } ], "block_height": 1 }