Skip to main content
GET
/
account
/
bookmarks
List Bookmarks
curl --request GET \
  --url https://api.dontdie.com/account/bookmarks \
  --header 'Authorization: Bearer <token>' \
  --header 'x-dd-client-id: <api-key>'
[
  {
    "userId": "1234-5678-9012-3456",
    "postId": "1234-5678-9012-3456",
    "createdAt": "2021-01-01T00:00:00Z"
  }
]

Authorizations

Authorization
string
header
required

Enter your Bearer token in the format: Bearer

x-dd-client-id
string
header
required

Your API client ID for the request

Query Parameters

offset
number

The offset of the bookmarks to get

limit
number

The limit of the bookmarks to get

Response

200 - application/json

OK

userId
string<uuid>

The ID of the user

Example:

"1234-5678-9012-3456"

postId
string<uuid>

The ID of the post

Example:

"1234-5678-9012-3456"

createdAt
string<date-time>

The date the bookmark was created

Example:

"2021-01-01T00:00:00Z"