Skip to main content

URL

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

Description

Get a metaverse project's floor prices in a paginated way. Floor prices 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}/floorPrices' \
--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": [
{
"date": "2022-08-23",
"eth_price": "1.3",
"usd_price": "2160.82374112815158"
},
...
]
}