markers
Save and restore your position in timelines.
Get saved timeline position
GET
https://mastodon.example/api/v1/markers
Returns: Marker
OAuth: User token + read:statuses
Version history:
3.0.0 - added
Query Parameters
Name
Type
Description
timeline
array
Array of markers to fetch. String enum anyOf home
, notifications
. If not provided, an empty object will be returned.
Headers
Name
Type
Description
Authorization
string
Bearer <user token>
Save position in timeline
POST
https://mastodon.example/api/v1/markers
Returns: Marker
OAuth: User token + write:statuses
Version history:
3.0.0 - added
Headers
Name
Type
Description
Authorization
string
Bearer <user token>
Request Body
Name
Type
Description
home[last_read_id]
string
ID of the last status read in the home timeline.
notifications[last_read_id]
string
ID of the last notification read.
Last updated
Was this helpful?