Skip to main content
GET
/
v1
/
collecting
/
media
/
cross-reference
Owned vs watched cross-reference
curl --request GET \
  --url https://api.rewind.rest/v1/collecting/media/cross-reference \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "collection": {
        "id": 2,
        "title": "The Great Escape",
        "year": 1963,
        "tmdb_id": 5925,
        "image": null,
        "media_type": "bluray_4k",
        "resolution": "2160p",
        "collected_at": "2025-12-25T00:00:00Z"
      },
      "watching": {
        "watched": true,
        "watch_count": 3,
        "last_watched": "2025-08-10T20:00:00Z"
      }
    }
  ],
  "summary": {
    "total_owned": 45,
    "total_watched": 30,
    "total_unwatched": 15,
    "watch_rate": 0.67
  },
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 30,
    "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
filter
string
default:all

Response

Cross-reference data with summary stats

data
object[]
required
summary
object
required
pagination
object
required