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