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

Tiles

Endpoints for retrieving map tile data. Tiles represent individual parcels and their properties in the Decentraland virtual world.

Get all map tiles

get
/v2/tiles

Returns all tiles in the Decentraland map with detailed information about each parcel. This endpoint supports filtering by coordinates and field selection to optimize payload size.

Filtering Options

  • Coordinate filtering: Use x1, y1, x2, y2 to request a specific area

  • Field inclusion: Use 'include' to select specific fields

  • Field exclusion: Use 'exclude' to omit specific fields

Caching

This endpoint includes Last-Modified headers and supports conditional requests with If-Modified-Since.

Query parameters
x1integerOptional

Minimum X coordinate for bounding box filter

Example: -150
y1integerOptional

Minimum Y coordinate for bounding box filter

Example: -150
x2integerOptional

Maximum X coordinate for bounding box filter

Example: 150
y2integerOptional

Maximum Y coordinate for bounding box filter

Example: 150
includestringOptional

Comma-separated list of fields to include in each tile

Example: id,x,y,type,owner,price
excludestringOptional

Comma-separated list of fields to exclude from each tile

Example: updatedAt,tokenId
Responses
200

Successful response with tile data

application/json
get/v2/tiles
Deprecated

Get all map tiles (Legacy format)

get
/v1/tiles

DEPRECATED: This endpoint returns tiles in the legacy format. Please use /v2/tiles instead.

Returns all tiles in the map using the older data format. This endpoint is maintained for backward compatibility but will be removed in a future version.

Query parameters
x1integerOptional
y1integerOptional
x2integerOptional
y2integerOptional
includestringOptional
excludestringOptional
Responses
200

Successful response with legacy tile data

application/json
okbooleanOptional
get/v1/tiles

Get tiles metadata information

get
/v2/tiles/info

Returns metadata about the tiles dataset, including the last update timestamp. This endpoint is useful for cache invalidation and determining when to refresh data.

Responses
200

Successful response with tiles info

application/json
get/v2/tiles/info

Last updated