API Keys

The EqhoAI API uses API keys for authentication. Every request to the API must include your API key, used to authenticate your requests and track usage quota.

Remember that your API key is a secret. Do not share it with others or expose it in any client-side code (browsers, apps).

All API requests should include your API key in an x-api-key HTTP header as follows:

x-api-key: YOUR_API_KEY

Making Request

Base URL: https://api.eqho.ai

Every endpoint has examples in different programming languages and curl.

You can paste the command below into your terminal to run your first API request. Make sure to replace $EQHO_API_KEY with your secret API key.

curl --request GET \
  --url https://api.eqho.ai/v1/agents \
  --header 'X-API-KEY: $EQHO_API_KEY'