Endpoint Playground
Test Crawlora's OpenSea NFT Price History API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/opensea/item/<chain>/<contract_address>/<token_id>/chart" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| chain (path) | string | Yes | Chain identifier from /opensea/chains | |
| contract_address (path) | string | Yes | NFT contract address | |
| token_id (path) | string | Yes | Token id within the contract |
{
"code": 200,
"data": {
"metric": "floor_price",
"points": [
{
"currency": "ETH",
"time": "2026-08-23T13:11:15.715Z",
"usd": 19182.64,
"value": 7.899
}
],
"slug": "boredapeyachtclub",
"timeframe": "SEVEN_DAYS"
},
"msg": "OK"
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns every indexed sale of one NFT with its timestamp and price, in both the settlement token and USD — the price history behind the chart on an item page. An item that has never sold returns an empty `points` list. For collection-level sale history use `/opensea/collection/{slug}/activity?event_types=SALE`.
{
"code": 200,
"data": {
"metric": "floor_price",
"points": [
{
"currency": "ETH",
"time": "2026-08-23T13:11:15.715Z",
"usd": 19182.64,
"value": 7.899
}
],
"slug": "boredapeyachtclub",
"timeframe": "SEVEN_DAYS"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/opensea/item/<chain>/<contract_address>/<token_id>/chart" \
-H "x-api-key: $CRAWLORA_API_KEY"