atproto blogging
1{
2 "lexicon": 1,
3 "id": "app.bsky.graph.getMutes",
4 "defs": {
5 "main": {
6 "type": "query",
7 "description": "Enumerates accounts that the requesting account (actor) currently has muted. Requires auth.",
8 "parameters": {
9 "type": "params",
10 "properties": {
11 "cursor": {
12 "type": "string"
13 },
14 "limit": {
15 "type": "integer",
16 "default": 50,
17 "minimum": 1,
18 "maximum": 100
19 }
20 }
21 },
22 "output": {
23 "encoding": "application/json",
24 "schema": {
25 "type": "object",
26 "required": [
27 "mutes"
28 ],
29 "properties": {
30 "cursor": {
31 "type": "string"
32 },
33 "mutes": {
34 "type": "array",
35 "items": {
36 "type": "ref",
37 "ref": "app.bsky.actor.defs#profileView"
38 }
39 }
40 }
41 }
42 }
43 }
44 }
45}