For the complete documentation index, see llms.txt. This page is also available as Markdown.

Rarities

Item rarity definitions

Get all rarities

get
/rarities

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"
      }
    }
  ]
}

Get a rarity

get
/rarities/{name}

Returns a specific rarity by name

Path parameters
namestringRequired
Responses
200

Rarity details

application/json
okbooleanOptional
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