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