## Get a series `GET https://getkollek.com/api/series/{series}` Retrieve a single series of your account by its ID. **Permissions:** Any member of the account. ### Path parameters - `series` (integer, required): The ID of the series. **Returns:** A series object, or 404 when the series does not belong to your account. ### Example request ```bash curl https://getkollek.com/api/series/1 \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 200` ```json { "data": { "type": "series", "id": "1", "attributes": { "name": "Harry Potter", "description": "The wizarding world across books, films and collectibles.", "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/series/1" } } } ```