Collection Statistics

Get global (period-independent) statistics by collection ID

Global collection statistics by ID

SecurityApiKeyAuth
Request
path Parameters
id
required
string (CollectionId)

Collection ID

Example: ETHEREUM:0xb66a603f4cfe17e3d27b87a8bfcad319856518b8
Responses
200

OK

400

Bad Request

500

Internal Server Error

get/v2.0/data/collections/{id}/statistics/global
Response samples
application/json
{
  • "id": "ETHEREUM:0xb66a603f4cfe17e3d27b87a8bfcad319856518b8",
  • "listed": 0,
  • "items": 0,
  • "owners": 0,
  • "floor": {
    },
  • "volume": {
    }
}

Get global (period-independent) statistics by collection IDs

Global collection statistics by IDs

SecurityApiKeyAuth
Request
Request Body schema: application/json
required
Array ([ 1 .. 100 ] items)
string (CollectionId)

Collection id

Responses
200

OK

400

Bad Request

500

Internal Server Error

post/v2.0/data/collections/statistics/global/byIds
Request samples
application/json
[
  • "ETHEREUM:0xb66a603f4cfe17e3d27b87a8bfcad319856518b8"
]
Response samples
application/json
[
  • {
    }
]

Get period-based statistics by collection ID

Period-based collection statistics by ID

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"
Responses
200

OK

400

Bad Request

500

Internal Server Error

get/v2.0/data/collections/{id}/statistics/period
Response samples
application/json
{
  • "id": "ETHEREUM:0xb66a603f4cfe17e3d27b87a8bfcad319856518b8",
  • "period": "MIN5",
  • "volume": {
    },
  • "floorChangePercent": 0
}

Get period-based statistics by collection IDs

Period-based collection statistics by IDs

SecurityApiKeyAuth
Request
Request Body schema: application/json
required
collectionIds
required
Array of strings [ 1 .. 100 ] items
period
required
string (OlapPeriod)

Period:

  • MIN5 - Last 5 minutes
  • MIN30 - Last 30 minutes
  • H1 - Last 1 hour
  • H6 - Last 6 hours
  • D1 - Last 1 day
  • D7 - Last 7 days
  • D30 - Last 30 days
  • D180 - Last 180 days (roughly 6 months)
  • D365 - Last 365 days (roughly 1 year)
  • ALL - For all time
Enum: "MIN5" "MIN30" "H1" "H6" "D1" "D7" "D30" "D180" "D365" "ALL"
Responses
200

OK

400

Bad Request

500

Internal Server Error

post/v2.0/data/collections/statistics/period/byIds
Request samples
application/json
{
  • "collectionIds": [
    ],
  • "period": "MIN5"
}
Response samples
application/json
[
  • {
    }
]

Get distribution of the number of owned items by owner

Returns list of owners of items in the collection along with the number of owned items

SecurityApiKeyAuth
Request
path Parameters
id
required
string (CollectionId)

Collection ID

Example: ETHEREUM:0xb66a603f4cfe17e3d27b87a8bfcad319856518b8
query Parameters
continuation
string

Continuation token from the previous response

size
integer

The number of results to return

Responses
200

OK

400

Bad Request

404

Not found

500

Internal Server Error

get/v2.0/data/collections/{id}/owners
Response samples
application/json
{
  • "owners": [
    ],
  • "continuation": "string"
}

Get distribution of the number of bids by price

Returns list of bid prices with number of bids and bidders

SecurityApiKeyAuth
Request
path Parameters
id
required
string (CollectionId)

Collection ID

Example: ETHEREUM:0xb66a603f4cfe17e3d27b87a8bfcad319856518b8
query Parameters
continuation
string

Continuation token from the previous response

size
integer

The number of results to return

sort
string (OlapBidsByPriceSort)
Default: "PRICE"

Result sorting

Enum: "PRICE" "VOLUME_NATIVE"
Responses
200

OK

400

Bad Request

404

Not found

500

Internal Server Error

get/v2.0/data/collections/{id}/bidsByPrice
Response samples
application/json
{
  • "maxVolumeNative": 0,
  • "prices": [
    ],
  • "continuation": "string"
}