Skip to main content
GET
/
v1
/
project
Get current project
curl --request GET \
  --url https://api.meetecho.ai/api/v1/project \
  --header 'x-api-key: <api-key>'
{
  "id": "e56b4c35-882d-4604-9944-9763d314ea59",
  "business_id": "97bfa642-d2cb-46d5-8de8-6d3553c83007",
  "name": "default",
  "status": "active",
  "created_at": "2026-03-18T16:44:15.000Z",
  "updated_at": "2026-03-18T16:44:15.000Z"
}

Authorizations

x-api-key
string
header
required

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

Response

200 - application/json

Project object

id
string<uuid>
Example:

"e56b4c35-882d-4604-9944-9763d314ea59"

business_id
string<uuid>
Example:

"97bfa642-d2cb-46d5-8de8-6d3553c83007"

name
string
Example:

"default"

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

"active"

created_at
string<date-time>
Example:

"2026-03-18T16:44:15.000Z"

updated_at
string<date-time>
Example:

"2026-03-18T16:44:15.000Z"