Get a list of clips. Does not require auth.
Parameters
Output
Encoding
application/jsonclips
array
Required
An array of hydrated clip views
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": "An array of hydrated clip views"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"uris"
],
"properties": {
"uris": {
"type": "array",
"items": {
"type": "string",
"format": "at-uri"
},
"maxLength": 25,
"description": "List of clip AT-URIs to return hydrated views for"
}
}
},
"description": "Get a list of clips. Does not require auth."
}