Skip to content

app.bsky.actor.searchActors

Lexicon Version: 1

Type: query

Find actors (profiles) matching search criteria. Does not require auth.

Parameters:

NameTypeReq’dDescriptionConstraints
termstringDEPRECATED: use ‘q’ instead.
qstringSearch query string. Syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended.
limitintegerMin: 1
Max: 100
Default: 25
cursorstring
Output:
  • Encoding: application/json
  • Schema:

Schema Type: object

NameTypeReq’dDescriptionConstraints
cursorstring
actorsArray of app.bsky.actor.defs#profileView

{
"lexicon": 1,
"id": "app.bsky.actor.searchActors",
"defs": {
"main": {
"type": "query",
"description": "Find actors (profiles) matching search criteria. Does not require auth.",
"parameters": {
"type": "params",
"properties": {
"term": {
"type": "string",
"description": "DEPRECATED: use 'q' instead."
},
"q": {
"type": "string",
"description": "Search query string. Syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"default": 25
},
"cursor": {
"type": "string"
}
}
},
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": [
"actors"
],
"properties": {
"cursor": {
"type": "string"
},
"actors": {
"type": "array",
"items": {
"type": "ref",
"ref": "app.bsky.actor.defs#profileView"
}
}
}
}
}
}
}
}