Skip to main content
POST
/
api
/
blur
/
collections
/
charts
/blur/collections/charts
curl --request POST \
  --url https://api.anysite.io/api/blur/collections/charts \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "collection": "<string>",
  "count": 2,
  "timeout": 300,
  "window": "day"
}
'
[
  {
    "@type": "BlurChartInterval",
    "opened_at": 123,
    "closed_at": 123,
    "floor_close_price": 123,
    "floor_close_marketplace": "<string>",
    "floor_low_price": 123,
    "sales": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
collection
string
required

Collection slug (e.g. 'azuki') or its on-chain contract address

Minimum string length: 1
Examples:

"azuki"

"0xed5af388653567af2f388e6224dc7c4b3241c544"

count
integer
required

Number of time intervals to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
window
enum<string>
default:day

Time span of the chart

Available options:
day,
week,
month

Response

Successful Response

@type
string
default:BlurChartInterval
opened_at
integer | null
closed_at
integer | null
floor_close_price
number | null
floor_close_marketplace
string | null
floor_low_price
number | null
sales
object[]