Rarities
Item rarity definitions
Returns all available item rarities with prices
Responses
200
List of rarities
application/json
okbooleanOptional
get/rarities
GET /v1/rarities HTTP/1.1
Host: builder-api.decentraland.org
Accept: */*
200
List of rarities
{
"ok": true,
"data": [
{
"id": "text",
"name": "text",
"price": "text",
"maxSupply": "text",
"prices": {
"MANA": "text",
"USD": "text"
}
}
]
}Returns a specific rarity by name
Path parameters
namestringRequired
Responses
200
Rarity details
application/json
okbooleanOptional
404
Resource not found
application/json
get/rarities/{name}
GET /v1/rarities/{name} HTTP/1.1
Host: builder-api.decentraland.org
Accept: */*
{
"ok": true,
"data": {
"id": "text",
"name": "text",
"price": "text",
"maxSupply": "text",
"prices": {
"MANA": "text",
"USD": "text"
}
}
}Last updated