## Create a circle API key **post** `/api/circles/{id}/api-keys` Creates a new `racks_circle_…` API key for the circle. Caller must be the owner or an admin. The full key is returned once. ### Path Parameters - `id: string` ### Body Parameters - `name: optional string` ### Returns - `id: optional string` - `key: optional string` Full `racks_circle_…` token — store it now ### Example ```http curl https://racks.cash/api/circles/$ID/api-keys \ -X POST ``` #### Response ```json { "id": "id", "key": "key" } ```