{ "lexicon": 1, "id": "com.atproto.label.queryLabels", "defs": { "main": { "type": "query", "description": "Find labels relevant to the provided AT-URI patterns. Public endpoint for moderation services, though may return different or additional results with auth.", "parameters": { "type": "params", "required": [ "uriPatterns" ], "properties": { "cursor": { "type": "string" }, "limit": { "type": "integer", "default": 50, "minimum": 1, "maximum": 250 }, "sources": { "type": "array", "description": "Optional list of label sources (DIDs) to filter on.", "items": { "type": "string", "format": "did" } }, "uriPatterns": { "type": "array", "description": "List of AT URI patterns to match (boolean 'OR'). Each may be a prefix (ending with '*'; will match inclusive of the string leading to '*'), or a full URI.", "items": { "type": "string" } } } }, "output": { "encoding": "application/json", "schema": { "type": "object", "required": [ "labels" ], "properties": { "cursor": { "type": "string" }, "labels": { "type": "array", "items": { "type": "ref", "ref": "com.atproto.label.defs#label" } } } } } } } }