One account's submissions, most recently indexed first.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
Pass to the next call. Absent when there is nothing more.
feed
array
Required
The page, newest first.
Errors
NotFound
No account here by that DID or handle. An account this board has never seen is not an error the caller can fix, but it is still not found. InvalidRequest
The actor is neither a DID nor a resolvable handle. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "NotFound",
"description": "No account here by that DID or handle. An account this board has never seen is not an error the caller can fix, but it is still not found."
},
{
"name": "InvalidRequest",
"description": "The actor is neither a DID nor a resolvable handle."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"feed"
],
"properties": {
"feed": {
"type": "array",
"items": {
"ref": "pub.oysters.defs#postView",
"type": "ref"
},
"description": "The page, newest first."
},
"cursor": {
"type": "string",
"description": "Pass to the next call. Absent when there is nothing more."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"actor"
],
"properties": {
"actor": {
"type": "string",
"format": "at-identifier",
"description": "A DID, or a handle to resolve."
},
"limit": {
"type": "integer",
"default": 25,
"maximum": 100,
"minimum": 1,
"description": "How many submissions to return."
},
"cursor": {
"type": "string",
"description": "Opaque. Pass back what the previous page returned."
}
}
},
"description": "One account's submissions, most recently indexed first."
}