Search for people by handle or display name. Used for mention autocomplete.
Parameters
Output
Encoding
application/jsonpeople
array
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"people"
],
"properties": {
"people": {
"type": "array",
"items": {
"ref": "cafe.dummy.lsky.defs#personView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"q"
],
"properties": {
"q": {
"type": "string",
"minLength": 1,
"description": "Search query string."
},
"limit": {
"type": "integer",
"default": 8,
"maximum": 25,
"minimum": 1
}
}
},
"description": "Search for people by handle or display name. Used for mention autocomplete."
}