## Get the account `GET https://getkollek.com/api/account` Retrieve the account your API key belongs to. A user belongs to exactly one account, so there is no ID to pass. The `items_used` and `item_limit` attributes describe the free plan of a hosted account. `item_limit` is the number of items past which creating one is refused with a 402 response. It is `null` on a self-hosted instance and on an account that has been unlocked, because neither has a ceiling to report. **Permissions:** Any member of the account. **Returns:** An account object. ### Example request ```bash curl https://getkollek.com/api/account \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 200` ```json { "data": { "type": "account", "id": "1", "attributes": { "name": "Central Perk", "currency_code": "USD", "items_used": 7, "item_limit": 15, "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/account" } } } ```