Skip to main content
GET
/
v1
/
api-keys
List API keys
curl --request GET \
  --url https://api.meetecho.ai/api/v1/api-keys \
  --header 'x-api-key: <api-key>'
[
  {
    "id": "7a4d3ce4-787f-73ec-7a87-4f45a4fd93c4",
    "name": "production",
    "key_prefix": "echo_6f437a610fb",
    "status": "active",
    "created_at": "2026-03-18T15:03:15.483Z",
    "updated_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.

Response

200 - application/json

Array of API keys

id
string<uuid>
Example:

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

name
string
Example:

"production"

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"

updated_at
string<date-time>
Example:

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