Find clips matching search criteria. Does not require auth.
Parameters
Output
Encoding
application/jsonclips
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.
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."
}