Get posts by a specific person, filtered by type.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description available.
posts
array
Required
No description available.
Errors
PersonNotFound
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "PersonNotFound"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"posts"
],
"properties": {
"posts": {
"type": "array",
"items": {
"ref": "cafe.dummy.lsky.defs#postView",
"type": "ref"
}
},
"cursor": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"actor"
],
"properties": {
"type": {
"type": "string",
"default": "post",
"description": "Filter by post type.",
"knownValues": [
"post",
"chirp"
]
},
"actor": {
"type": "string",
"description": "DID or handle of the author."
},
"limit": {
"type": "integer",
"default": 20,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string"
}
}
},
"description": "Get posts by a specific person, filtered by type."
}