social.clippr.actor.searchTags

clippr.social

Documentation

Find tags matching search criteria. Does not require auth.

main query

Find tags matching search criteria. Does not require auth.

Parameters

actor string at-identifier Optional

An actor to filter results to

cursor string Optional

A parameter to paginate results

limit integer Optional

How many tags to return in the query output

q string Required

Search query string

Output

Encodingapplication/json
cursor string Optional

A parameter to paginate results

tags array Required

A list of tags and their associated details

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
An actor to filter results to
A parameter to paginate results
How many tags to return in the query output
Search query string
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "tags"
      ],
      "properties": {
        "tags": {
          "type": "array",
          "items": {
            "ref": "social.clippr.feed.defs#tagView",
            "type": "ref"
          },
          "description": "A list of tags and their associated details"
        },
        "cursor": {
          "type": "string",
          "description": "A parameter to paginate results"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "q"
    ],
    "properties": {
      "q": {
        "type": "string",
        "description": "Search query string"
      },
      "actor": {
        "type": "string",
        "format": "at-identifier",
        "description": "An actor to filter results to"
      },
      "limit": {
        "type": "integer",
        "default": 25,
        "maximum": 100,
        "minimum": 1,
        "description": "How many tags to return in the query output"
      },
      "cursor": {
        "type": "string",
        "description": "A parameter to paginate results"
      }
    }
  },
  "description": "Find tags matching search criteria. Does not require auth."
}

Lexicon Garden

@