Get list of accounts that matches your search query.
Parameters
Output
Encoding
application/jsonaccounts
array
Required
No description provided.
cursor
string
Optional
No description provided.
Try It
Direct PDS XRPC methods (com.atproto.*) are disabled in Try It for security reasons.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"accounts"
],
"properties": {
"cursor": {
"type": "string"
},
"accounts": {
"type": "array",
"items": {
"ref": "com.atproto.admin.defs#accountView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"email": {
"type": "string"
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string"
}
}
},
"description": "Get list of accounts that matches your search query."
}