Skip to main content
POST
/
v1
/
dev
/
keys
Create API key
curl --request POST \
  --url https://api.omi.me/v1/dev/keys \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "My New Integration"
}
'
{
  "id": "key_789ghi",
  "name": "My New Integration",
  "key_prefix": "omi_dev_ghi789",
  "key": "omi_dev_ghi789_full_secret_key_here",
  "created_at": "2025-01-20T15:00:00Z",
  "last_used_at": null
}

Authorizations

Authorization
string
header
required

Developer API key. Get one from Settings → Developer → Create Key in the Omi app. Keys are prefixed with omi_dev_.

Body

application/json
name
string
required

Descriptive name for the key.

Response

The created API key with full secret.

id
string
name
string
key_prefix
string
key
string

The full API key. Only returned once during creation.

created_at
string<date-time>
last_used_at
string<date-time> | null