curl --location --request GET 'https://api.sqabl.com/v1/user//bookmarks?pageSize&lastEvaluatedKey' \
--header 'Authorization: Bearer some-random-token'
{
"success": true,
"statusCode": 200,
"data": [
{
"type": "post",
"post": {
"id": "some-post-id",
"...": "..."
}
},
{
"type": "comment",
"comment": {
"id": "some-comment-id",
"...": "...",
"post": {
"id": "some-post-id",
"text": "some texts"
}
}
},
{
"type": "post",
"post": {
"id": "some-post-id",
"...": "..."
}
}
]
}