User Mutes
Returns a paginated list of users muted by the authenticated user. Supports filtering by a single address or multiple addresses.
Signed Fetch authentication. See ADR-44 for more details about the authentication mechanism.
Number of results per page Values above the maximum are reduced to it.
10Number of results to skip Values above the maximum are capped rather than rejected, so paging past it returns the last page again.
0Filter by a single muted address
Filter by multiple muted addresses (e.g. ?addresses=0x1&addresses=0x2)
List of muted users
Missing authentication
Internal server error
GET /v1/mutes HTTP/1.1
Host: social-api.decentraland.org
Authorization: YOUR_API_KEY
Accept: */*
{
"data": {
"results": [
{
"address": "text",
"muted_at": "2026-01-01T00:00:00.000Z"
}
],
"total": 1,
"limit": 1,
"offset": 1,
"page": 1,
"pages": 1
}
}Mutes a user by adding a mute record. The muter is identified via Signed Fetch authentication. Muting yourself returns a 400 error. Muting an already-muted user is idempotent (returns 204).
Signed Fetch authentication. See ADR-44 for more details about the authentication mechanism.
Ethereum address of the user to mute
0x0000000000000000000000000000000000000001User muted successfully
No content
Invalid request (invalid address, self-mute, or missing authentication)
Internal server error
POST /v1/mutes HTTP/1.1
Host: social-api.decentraland.org
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 62
{
"muted_address": "0x0000000000000000000000000000000000000001"
}No content
Removes a mute record for a user. The muter is identified via Signed Fetch authentication. Unmuting a user that is not muted is a no-op (returns 204).
Signed Fetch authentication. See ADR-44 for more details about the authentication mechanism.
Ethereum address of the user to unmute
0x0000000000000000000000000000000000000001User unmuted successfully
No content
Invalid request (invalid address or missing authentication)
Internal server error
DELETE /v1/mutes HTTP/1.1
Host: social-api.decentraland.org
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 62
{
"muted_address": "0x0000000000000000000000000000000000000001"
}No content
Last updated