Skip to main content
GET
/
v1
/
collecting
/
wantlist
Wantlist
curl --request GET \
  --url https://api.rewind.rest/v1/collecting/wantlist \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 100,
      "discogs_id": 9999999,
      "title": "In Utero",
      "artists": [
        "Nirvana"
      ],
      "year": 1993,
      "formats": [
        "Vinyl"
      ],
      "genres": [
        "Rock"
      ],
      "image": null,
      "discogs_url": "https://www.discogs.com/release/9999999",
      "notes": null,
      "rating": null,
      "date_added": "2026-01-10T12:00:00Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 1,
    "total_pages": 1
  }
}

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
sort
string
default:date_added
order
string
default:desc

Response

Paginated wantlist items

data
object[]
required
pagination
object
required