List movies
curl --request GET \
--url https://api.rewind.rest/v1/watching/movies \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.rewind.rest/v1/watching/movies', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.rewind.rest/v1/watching/movies"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"id": 15,
"title": "Ferris Bueller's Day Off",
"year": 1986,
"director": "John Hughes",
"directors": [
"John Hughes"
],
"genres": [
"Comedy"
],
"duration_min": 103,
"rating": "PG-13",
"image": {
"url": "https://cdn.rewind.rest/cdn-cgi/image/width=240,height=360,fit=cover,format=auto,quality=85/watching/movies/15/original.jpg?v=1",
"thumbhash": "YRcKDQKadZh4d3Z4d3aHeAeAh4B3",
"dominant_color": "#2a2a2a",
"accent_color": "#c8a882"
},
"imdb_id": "tt0091042",
"tmdb_id": 9377,
"tmdb_rating": 7.6,
"tagline": "One man's struggle to take it easy.",
"summary": "A high school wise guy is determined to have a day off from school, despite what the Principal thinks of that.",
"last_watched_at": "2026-03-10T02:30:00.000Z"
},
{
"id": 200,
"title": "Interstellar",
"year": 2014,
"director": "Christopher Nolan",
"directors": [
"Christopher Nolan"
],
"genres": [
"Science Fiction",
"Drama"
],
"duration_min": 169,
"rating": "PG-13",
"image": null,
"imdb_id": "tt0816692",
"tmdb_id": 157336,
"tmdb_rating": 8.4,
"tagline": null,
"summary": null,
"last_watched_at": "2024-12-20T20:00:00.000Z"
}
],
"pagination": {
"page": 1,
"limit": 20,
"total": 694,
"total_pages": 35
}
}{
"error": "Not found",
"status": 404
}Watching
List movies
Returns paginated list of movies with optional filters.
GET
/
v1
/
watching
/
movies
List movies
curl --request GET \
--url https://api.rewind.rest/v1/watching/movies \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.rewind.rest/v1/watching/movies', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.rewind.rest/v1/watching/movies"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"id": 15,
"title": "Ferris Bueller's Day Off",
"year": 1986,
"director": "John Hughes",
"directors": [
"John Hughes"
],
"genres": [
"Comedy"
],
"duration_min": 103,
"rating": "PG-13",
"image": {
"url": "https://cdn.rewind.rest/cdn-cgi/image/width=240,height=360,fit=cover,format=auto,quality=85/watching/movies/15/original.jpg?v=1",
"thumbhash": "YRcKDQKadZh4d3Z4d3aHeAeAh4B3",
"dominant_color": "#2a2a2a",
"accent_color": "#c8a882"
},
"imdb_id": "tt0091042",
"tmdb_id": 9377,
"tmdb_rating": 7.6,
"tagline": "One man's struggle to take it easy.",
"summary": "A high school wise guy is determined to have a day off from school, despite what the Principal thinks of that.",
"last_watched_at": "2026-03-10T02:30:00.000Z"
},
{
"id": 200,
"title": "Interstellar",
"year": 2014,
"director": "Christopher Nolan",
"directors": [
"Christopher Nolan"
],
"genres": [
"Science Fiction",
"Drama"
],
"duration_min": 169,
"rating": "PG-13",
"image": null,
"imdb_id": "tt0816692",
"tmdb_id": 157336,
"tmdb_rating": 8.4,
"tagline": null,
"summary": null,
"last_watched_at": "2024-12-20T20:00:00.000Z"
}
],
"pagination": {
"page": 1,
"limit": 20,
"total": 694,
"total_pages": 35
}
}{
"error": "Not found",
"status": 404
}Authorizations
API key. Read keys (rw_live_...) access GET endpoints. Admin keys (rw_admin_...) access all endpoints.
Query Parameters
Required range:
x >= 1Required range:
1 <= x <= 100Comma-separated Rewind movie IDs to omit before pagination.
Maximum string length:
1000Pattern:
^\d+(,\d+)*$Example:
"202,418"
⌘I