Paginated chronological feed of timeline items. Each item is discriminated by `$type` (today only `app.tempomusic.feed.post`; future variants such as `app.tempomusic.feed.review` plug in additively). When the request carries a service-auth JWT, the viewer DID is read from its `iss` claim and each returned item carries a viewer projection; anonymous requests receive items without viewer state.
Parameters
Output
application/jsoncursor
string
Optional
Cursor for fetching the next page. Absent when no further results are available.
items
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": [
"items"
],
"properties": {
"items": {
"type": "array",
"items": {
"refs": [
"app.tempomusic.feed.defs#postView"
],
"type": "union"
}
},
"cursor": {
"type": "string",
"maxLength": 1024,
"description": "Cursor for fetching the next page. Absent when no further results are available."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of timeline items to return."
},
"cursor": {
"type": "string",
"maxLength": 1024,
"description": "Opaque pagination cursor returned by a previous call."
}
}
},
"description": "Paginated chronological feed of timeline items. Each item is discriminated by `$type` (today only `app.tempomusic.feed.post`; future variants such as `app.tempomusic.feed.review` plug in additively). When the request carries a service-auth JWT, the viewer DID is read from its `iss` claim and each returned item carries a viewer projection; anonymous requests receive items without viewer state."
}