Skip to main content
GET
/
{chain_id}
/
api
/
v2
/
mud
/
worlds
List of MUD worlds.
curl --request GET \
  --url https://api.blockscout.com/{chain_id}/api/v2/mud/worlds \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "address": {
        "ens_domain_name": "<string>",
        "hash": "<string>",
        "implementations": [
          {
            "address_hash": "<string>",
            "name": "<string>"
          }
        ],
        "is_contract": true,
        "is_scam": true,
        "is_verified": true,
        "metadata": {
          "tags": [
            {
              "meta": {},
              "name": "<string>",
              "ordinal": 123,
              "slug": "<string>",
              "tagType": "<string>"
            }
          ]
        },
        "name": "<string>",
        "private_tags": [
          {
            "address_hash": "<string>",
            "display_name": "<string>",
            "label": "<string>"
          }
        ],
        "public_tags": [
          {
            "address_hash": "<string>",
            "display_name": "<string>",
            "label": "<string>"
          }
        ],
        "watchlist_names": [
          {
            "display_name": "<string>",
            "label": "<string>"
          }
        ]
      },
      "coin_balance": "<string>",
      "transactions_count": 123
    }
  ],
  "next_page_params": {
    "world": "0x82cb040ff4463bff3395d52b558fd77c61583b27"
  }
}

Authorizations

Authorization
string
header
required

API key passed as a Bearer token in the Authorization header.

Path Parameters

chain_id
string
required

The ID of the blockchain

Query Parameters

items_count
integer

Number of items per page

Required range: x >= 1
world
string

MUD world address hash for paging

Pattern: ^0x([A-Fa-f0-9]{40})$

Response

200 - application/json

List of MUD worlds.

items
World · object[]
required
next_page_params
object
required
Example:
{
"world": "0x82cb040ff4463bff3395d52b558fd77c61583b27"
}