Skip to main content
GET
/
v1
/
collecting
/
media
/
recent
Recently added physical media
curl --request GET \
  --url https://api.rewind.rest/v1/collecting/media/recent \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 1,
      "title": "Top Gun: Maverick",
      "year": 2022,
      "tmdb_id": 361743,
      "image": null,
      "tmdb_rating": 8.2,
      "media_type": "bluray",
      "resolution": "1080p",
      "hdr": null,
      "audio": "Dolby Atmos",
      "audio_channels": "7.1",
      "collected_at": "2026-01-15T00:00:00Z"
    }
  ]
}

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

limit
integer
default:10
Required range: 1 <= x <= 50
page
integer
default:1
Required range: x >= 1
date
string

Single day (YYYY-MM-DD). Overrides from/to.

Pattern: ^\d{4}-\d{2}-\d{2}$
Example:

"2025-02-17"

from
string

Range start, inclusive (ISO 8601)

Example:

"2025-02-01T00:00:00Z"

to
string

Range end, inclusive (ISO 8601)

Example:

"2025-02-28T23:59:59Z"

Response

Recent media items

data
object[]
required