Skip to main content
GET
/
v1
/
collecting
/
recent
Recent vinyl additions
curl --request GET \
  --url https://api.rewind.rest/v1/collecting/recent \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 1,
      "discogs_id": 6872464,
      "title": "Nevermind",
      "artists": [
        "Nirvana"
      ],
      "year": 1991,
      "format": "Vinyl",
      "format_detail": "[\"LP\",\"Album\"]",
      "label": "[{\"name\":\"DGC\",\"catno\":\"DGC-24425\"}]",
      "genres": [
        "Rock"
      ],
      "styles": [
        "Grunge"
      ],
      "image": {
        "url": "https://cdn.rewind.rest/collecting/releases/6872464/original.jpg?width=300&height=300&fit=cover&format=auto&quality=85&v=1",
        "thumbhash": "GncKRwaU9niFd3dShlaJSFeJlYCYhGYA",
        "dominant_color": "#222229",
        "accent_color": "#9b31ed"
      },
      "date_added": "2026-03-11T16:05:58-07:00",
      "rating": 0,
      "discogs_url": "https://www.discogs.com/release/6872464"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 284,
    "total_pages": 15
  }
}

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 collection items

data
object[]
required