Skip to main content
GET
/
v1
/
reading
/
highlights
List highlights
curl --request GET \
  --url https://api.rewind.rest/v1/reading/highlights \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 1,
      "text": "The question is not whether AI will transform society, but how quickly institutions can adapt.",
      "note": "Key thesis",
      "position": 1,
      "chapter": null,
      "page": null,
      "created_at": "2026-03-19T08:10:00.000Z",
      "article": {
        "id": 42,
        "title": "The Age of AI",
        "author": "Derek Thompson",
        "domain": "theatlantic.com",
        "url": "https://www.theatlantic.com/technology/archive/2025/the-age-of-ai",
        "instapaper_url": "https://www.instapaper.com/read/1234567",
        "instapaper_app_url": "instapaper://read/1234567"
      }
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 312,
    "total_pages": 16
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.rewind.rest/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key. Read keys (rw_live_...) access GET endpoints. Admin keys (rw_admin_...) access all endpoints.

Query Parameters

page
integer
default:1
Required range: x >= 1
Example:

1

limit
integer
default:20
Required range: 1 <= x <= 50
Example:

20

Response

Paginated highlights

data
object[]
required
pagination
object
required