v1

latestOpenAPI 3.1.02026-07-221206394.4 KB
API keys

Create an API key

Creates a new API key. The secret key is returned only once in this response, so store it securely.

post/v1/keys

Request body

namestring required

A descriptive name for the key.

Example request

{
  "name": "Data sync (production)"
}

Response

The created API key, including the one-time secret.

Example response

{
  "data": {
    "name": "Production sync",
    "key": "pk_your_api_key_here",
    "keyLastFour": "here",
    "clientId": "ci_your_client_id_here"
  }
}