Skip to content

List My Bookmarks

GET
/api/v1/posts/me/bookmarks

Authorizations

SessionAuth

Session ID for authenticated requests

Type
API Key (header: X-Session-ID)

Responses

Bookmarks list

Playground

Server
Authorization

Samples

Powered by VitePress OpenAPI

List bookmarks for the current user.

Auth: session.

Parameters

NameInTypeRequiredDescription
pagequerynumberNoPage number
limitquerynumberNoItems per page

Request Body

None.

Response 200

json
{
	"data": [
		{ "post_id": "post_2", "bookmarked_at": "2026-04-02T10:00:00.000Z" }
	],
	"user_context": { "authenticated": true },
	"meta": { "page": 1, "limit": 10, "total": 1 }
}

Response Errors

  • 401 missing session

Notes

  • Use this to power saved-items pages.
  • Returns only the bookmarks owned by the current user.