Get a view of a profile's reverse-chronological clips feed. Does not require auth.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description available.
feed
array
Required
No description available.
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": [
"feed"
],
"properties": {
"feed": {
"type": "array",
"items": {
"ref": "social.clippr.feed.defs#tagView",
"type": "ref"
}
},
"cursor": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"actor"
],
"properties": {
"actor": {
"type": "string",
"format": "at-identifier",
"description": "An actor to get feed data from"
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "How many results to return with the query"
},
"cursor": {
"type": "string",
"description": "A parameter to paginate results"
}
}
},
"description": "Get a view of a profile's reverse-chronological clips feed. Does not require auth."
}