social.colibri.actor.listMutes

colibri.social

Documentation

Lists the subjects the authenticated user has muted.

main query

Lists the subjects the authenticated user has muted.

Output

Encodingapplication/json
mutes array Required

No description available.

Errors

AuthRequired Missing, malformed, or unverifiable service auth.
Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "AuthRequired",
      "description": "Missing, malformed, or unverifiable service auth."
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "mutes"
      ],
      "properties": {
        "mutes": {
          "type": "array",
          "items": {
            "ref": "lex:social.colibri.actor.listMutes#mute",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Lists the subjects the authenticated user has muted."
}
mute object

No description available.

Properties

subject string Required

The muted subject (a DID).

uri string at-uri Required

AT-URI of the mute record.

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "subject"
  ],
  "properties": {
    "uri": {
      "type": "string",
      "format": "at-uri",
      "description": "AT-URI of the mute record."
    },
    "subject": {
      "type": "string",
      "description": "The muted subject (a DID)."
    }
  }
}

Lexicon Garden

@