Districts
Endpoints for querying information about districts in Genesis City, including contributions made by community members.
Returns a list of all districts in Genesis City. Districts are special areas with unique themes and community-driven development.
Responses
200
List of all districts
application/json
get/v2/districts
GET /v2/districts HTTP/1.1
Host: api.decentraland.org
Accept: */*
200
List of all districts
{
"ok": true,
"data": [
{
"id": "aetherian-project",
"name": "Aetherian Project",
"description": "A district focused on art and culture",
"parcels": [
"23,-23"
],
"totalParcels": 42
}
]
}Returns detailed information about a specific district, including its name, description, and all parcels that belong to it.
Path parameters
idstringRequiredExample:
District ID
aetherian-projectResponses
200
District information
application/json
404
District not found
text/plain
get/v2/districts/{id}
GET /v2/districts/{id} HTTP/1.1
Host: api.decentraland.org
Accept: */*
{
"ok": true,
"data": {
"id": "aetherian-project",
"name": "Aetherian Project",
"description": "A district focused on art and culture",
"parcels": [
"23,-23"
],
"totalParcels": 42
}
}Returns a list of all district contributions made by a specific Ethereum address. Contributions represent parcels that were contributed during the district allocation phase.
Path parameters
addressstringRequiredExample:
Ethereum address
0x1234567890abcdef1234567890abcdef12345678Responses
200
List of contributions
application/json
get/v2/addresses/{address}/contributions
GET /v2/addresses/{address}/contributions HTTP/1.1
Host: api.decentraland.org
Accept: */*
200
List of contributions
{
"ok": true,
"data": [
{
"address": "0x1234567890abcdef1234567890abcdef12345678",
"districtId": "aetherian-project",
"totalParcels": 5
}
]
}Last updated