Endpoint Playground
Test Crawlora's OpenSea Collection Price Chart 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/collection/<slug>/chart?metric=floor_price&timeframe=ONE_HOUR" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | OpenSea collection slug | |
| metric | string | No | floor_price | Series to return |
| timeframe | string | No | ONE_HOUR | Window |
{
"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 a time series for a collection — either its floor price or its traded volume — over the requested window, with each sample in both the settlement token and USD. Use `metric=floor_price` for the floor line and `metric=volume` for the volume bars.
{
"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/collection/<slug>/chart" \
-H "x-api-key: $CRAWLORA_API_KEY"