## Get a set `GET https://getkollek.com/api/sets/{set}` Retrieve a single set of your account by its ID. **Permissions:** Any member of the account. ### Path parameters - `set` (integer, required): The ID of the set. **Returns:** A set object, or 404 when the set does not belong to your account. ### Example request ```bash curl https://getkollek.com/api/sets/1 \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 200` ```json { "data": { "type": "set", "id": "1", "attributes": { "name": "Amazing Spider-Man #1-10", "description": "The first ten issues of the run.", "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/sets/1" } } } ```