social.clippr.actor.searchClips

clippr.social

Documentation

Find clips matching search criteria. Does not require auth.

main query

Find clips 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 clips to return in the query output

q string Required

Search query string

Output

Encodingapplication/json
clips array Required

A list of clips and their associated details

cursor string Optional

A parameter to paginate results

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 clips to return in the query output
Search query string
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "clips"
      ],
      "properties": {
        "clips": {
          "type": "array",
          "items": {
            "ref": "social.clippr.feed.defs#clipView",
            "type": "ref"
          },
          "description": "A list of clips 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 clips to return in the query output"
      },
      "cursor": {
        "type": "string",
        "description": "A parameter to paginate results"
      }
    }
  },
  "description": "Find clips matching search criteria. Does not require auth."
}

Lexicon Garden

@