Skip to main content

Documentation Index

Fetch the complete documentation index at: https://www.edgee.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

1

Open API Keys

In your Edgee Console, navigate to API Keys.
2

Create a new key

Click Create API Key, give it a name (e.g., “Development”), and click Create.
3

Copy your key

Copy the key immediately; it will not be shown again.
Create an API Key
Store your API key securely. Never commit it to version control or expose it in client-side code.

Test Your Key

Now you copied your key, you can verify it works with a simple curl request:
curl https://api.edgee.ai/v1/chat/completions \
  -H "Authorization: Bearer $EDGEE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.2",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'