Skip to main content
GET
/
v1
/
watching
/
reviews
Movie reviews
curl --request GET \
  --url https://api.rewind.rest/v1/watching/reviews \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "movie": {
        "id": 50,
        "title": "The Great Escape",
        "year": 1963,
        "tmdb_id": 5925,
        "image": null
      },
      "user_rating": 5,
      "review": "An absolute masterpiece of tension and camaraderie.",
      "review_url": "https://letterboxd.com/user/film/the-great-escape/",
      "watched_at": "2025-08-10T20:00:00Z",
      "source": "letterboxd"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 25,
    "total_pages": 2
  }
}

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
limit
integer
default:20
Required range: 1 <= x <= 100

Response

Movie reviews

data
object[]
required
pagination
object
required