Skip to main content

URL

https://open.oneland.world/v1/project/{projectId}/stats

Description

Get a metaverse project's stats data in a paginated way. Stats will be indexed and calculated daily for each metaverse project.

Records will be returned in date descending order.

Type

GET

"Authorization": "Bearer <YOUR-API-TOKEN>"

Sample Curl Command

curl -X GET 'https://open.oneland.world/v1/project/{projectId}/stats' \
--header 'Authorization: Bearer <YOUR-API-TOKEN>'

QUERY PARAMS

KeyDescriptionDefault
offsetFor pagination. Number of record offset from the beginning of the result list.0
limitFor pagination. Maximum number of records to return. Maximum to 200.1

Sample Response

{
"code": 200,
"message": "success",
"data": [
{
"volume_eth": 11.119435243263744,
"volume_usd": 18044.384029651268,
"market_cap_eth": 198235.04324377578,
"market_cap_usd": 321691630.03060013,
"holders_count": 7069,
"sales_count": 4,
"date": "2022-08-22"
},
...
]
}