## Get a collection `GET https://getkollek.com/api/collections/{collection}` Retrieve a single collection of your account by its ID. **Permissions:** Any member of the account. ### Path parameters - `collection` (integer, required): The ID of the collection. **Returns:** A collection object, or 404 when the collection does not belong to your account. ### Example request ```bash curl https://getkollek.com/api/collections/1 \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 200` ```json { "data": { "type": "collection", "id": "1", "attributes": { "uuid": "9e2f6c1a-4b3d-4b6e-9a2f-0c1d2e3f4a5b", "name": "My Comics", "description": "Silver age Marvel issues.", "emoji": "📚", "visibility": "private", "currency": "USD", "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/collections/1" } } } ```