Skip to main content

URL

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

Description

Get a metaverse project's users stats in a paginated way. Users stats will be indexed hourly for each metaverse project.

Records will be returned in time descending order.

tip

Currently only Decentraland is supported for this API

Type

GET

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

Sample Curl Command

curl -X GET 'https://open.oneland.world/v1/project/{projectId}/users' \
--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": [
{
"users_count": 478,
"timestamp": "2022-08-23T08:00:00.000Z"
},
...
]
}