## Get an API key `GET https://getkollek.com/api/administration/api/{id}` Retrieve a single API key of your user by its ID. ### Path parameters - `id` (integer, required): The ID of the API key. **Returns:** An api_key object, or 404 when the key belongs to another user. ### Example request ```bash curl https://getkollek.com/api/administration/api/1 \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 200` ```json { "data": { "type": "api_key", "id": "1", "attributes": { "name": "GitHub Actions", "token": null, "last_used_at": 1752537600, "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/administration/api/1" } } } ```