Skip to main content
POST
/
v1
/
api-keys
Create API key
curl --request POST \
  --url https://api.meetecho.ai/api/v1/api-keys \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "production"
}
'
{
  "id": "7a4d3ce4-787f-73ec-7a87-4f45a4fd93c4",
  "name": "production",
  "key": "echo_6f437a610fbb65e6a2742c60ef3e916a80f638522ff11fcc1c711b75fd958534",
  "key_prefix": "echo_6f437a610fb",
  "status": "active",
  "created_at": "2026-03-18T15:03:15.483Z"
}

Authorizations

x-api-key
string
header
required

Echo API key — format: echo_<64 hex chars>. Returned once on signup.

Body

application/json
name
string
required
Example:

"production"

Response

201 - application/json

Key created

The key field is shown exactly once.

id
string<uuid>
Example:

"7a4d3ce4-787f-73ec-7a87-4f45a4fd93c4"

name
string
Example:

"production"

key
string
Example:

"echo_6f437a610fbb65e6a2742c60ef3e916a80f638522ff11fcc1c711b75fd958534"

key_prefix
string
Example:

"echo_6f437a610fb"

status
enum<string>
Available options:
active,
revoked
Example:

"active"

created_at
string<date-time>
Example:

"2026-03-18T15:03:15.483Z"