place.stream.live.searchActorsTypeahead

did:web:stream.place View official

Documentation

Find actor suggestions for a prefix search term. Expected use is for auto-completion during text field entry.

main query

Find actor suggestions for a prefix search term. Expected use is for auto-completion during text field entry.

Parameters

limit integer Optional

No description available.

q string Optional

Search query prefix; not a full query string.

Output

Encodingapplication/json
actors array Required

No description available.

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
Search query prefix; not a full query string.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "actors"
      ],
      "properties": {
        "actors": {
          "type": "array",
          "items": {
            "ref": "#actor",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "q": {
        "type": "string",
        "description": "Search query prefix; not a full query string."
      },
      "limit": {
        "type": "integer",
        "default": 10,
        "maximum": 100,
        "minimum": 1
      }
    }
  },
  "description": "Find actor suggestions for a prefix search term. Expected use is for auto-completion during text field entry."
}
actor object

No description available.

Properties

did string did Required

The actor's DID

handle string handle Required

The actor's handle

View raw schema
{
  "type": "object",
  "required": [
    "did",
    "handle"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did",
      "description": "The actor's DID"
    },
    "handle": {
      "type": "string",
      "format": "handle",
      "description": "The actor's handle"
    }
  }
}

Lexicon Garden

@