## List API keys for a circle **get** `/api/circles/{id}/api-keys` Returns metadata for all API keys scoped to a circle. Caller must be the circle owner or an admin. ### Path Parameters - `id: string` ### Returns - `keys: optional array of object { id, createdAt, lastUsedAt, 2 more }` - `id: optional string` - `createdAt: optional string` - `lastUsedAt: optional string` - `name: optional string` - `prefix: optional string` ### Example ```http curl https://racks.cash/api/circles/$ID/api-keys ``` #### Response ```json { "keys": [ { "id": "id", "createdAt": "2019-12-27T18:11:19.117Z", "lastUsedAt": "2019-12-27T18:11:19.117Z", "name": "name", "prefix": "prefix" } ] } ```