## List API keys `GET https://getkollek.com/api/administration/api` Retrieve every API key of your user, including the ones created by logging in. The list is not paginated, and the token attribute is always null: the plain-text token is only shown once, when the key is created. **Returns:** A list of api_key objects. ### Example request ```bash curl https://getkollek.com/api/administration/api \ -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" } }, { "type": "api_key", "id": "2", "attributes": { "name": "Login from My integration", "token": null, "last_used_at": 1752537600, "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/administration/api/2" } } ] } ```