Find profiles matching search criteria. Does not require auth.
Parameters
Output
Encoding
application/jsonactors
array
Required
No description available.
cursor
string
Optional
A parameter used for pagination
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": [
"actors"
],
"properties": {
"actors": {
"type": "array",
"items": {
"ref": "social.clippr.actor.defs#profileView",
"type": "ref"
}
},
"cursor": {
"type": "string",
"description": "A parameter used for pagination"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"q": {
"type": "string",
"description": "Search query string"
},
"limit": {
"type": "integer",
"default": 25,
"maximum": 100,
"minimum": 1,
"description": "The number of profiles to be returned in the query"
},
"cursor": {
"type": "string",
"description": "A parameter used for pagination"
}
}
},
"description": "Find profiles matching search criteria. Does not require auth."
}