Charts

Get historical data of floor price for collection for charting purposes

Returns list of historical floor prices aggregated at even intervals in the specified time period - last day, last month etc. Each points represents the aggregated value of the interval after it. The last point represents the current floor price.

SecurityApiKeyAuth
Request
path Parameters
id
required
string (CollectionId)

Collection ID

Example: ETHEREUM:0xb66a603f4cfe17e3d27b87a8bfcad319856518b8
query Parameters
period
required
string (OlapPeriod)

Time period for aggregation

Enum: "MIN5" "MIN30" "H1" "H6" "D1" "D7" "D30" "D180" "D365" "ALL"
size
required
integer

Number of data points to return

endTime
string <date-time>

Optionally, the date-time of the last point of the graph. Defaults to current time.

Responses
200

OK

400

Bad Request

404

Not found

500

Internal Server Error

get/v2.0/data/collections/{id}/charts/floorPrice
Response samples
application/json
{
  • "dataPoints": {
    }
}

Get historical data of collection volume (total sales worth) for charting purposes

Given a time period and the desired number of points, returns points which represent total worth of collection sales in the interval after that point. The last point always has no value.

SecurityApiKeyAuth
Request
path Parameters
id
required
string (CollectionId)

Collection ID

Example: ETHEREUM:0xb66a603f4cfe17e3d27b87a8bfcad319856518b8
query Parameters
period
required
string (OlapPeriod)

Time period for aggregation

Enum: "MIN5" "MIN30" "H1" "H6" "D1" "D7" "D30" "D180" "D365" "ALL"
size
required
integer

Number of data points to return

endTime
string <date-time>

Optionally, the date-time of the last point of the graph. Defaults to current time.

Responses
200

OK

400

Bad Request

404

Not found

500

Internal Server Error

get/v2.0/data/collections/{id}/charts/volume
Response samples
application/json
{
  • "dataPoints": {
    }
}