> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cloudidr.com/llms.txt
> Use this file to discover all available pages before exploring further.

# API Keys

Every user gets a unique Cloudidr API Key. Cloudidr uses these unique API keys to track LLM API calls and associate to each user and organization.

* Go to **Settings** on left side panel and click **API Keys** page.

<Frame>
  <img src="https://mintcdn.com/cloudidr/HTYH0tjfPc8pFeUw/images/Screenshot-2026-04-10-at-21.54.14.png?fit=max&auto=format&n=HTYH0tjfPc8pFeUw&q=85&s=e83b08bf86d381179d07b649d2331720" alt="Screenshot 2026 04 10 At 21 54 14" width="2474" height="1292" data-path="images/Screenshot-2026-04-10-at-21.54.14.png" />
</Frame>

* A user can create and manage their own API keys under the **My Keys** tab
* Owner can also see and revoke API Keys for their team members under the **Company** tab.
* Cloudidr API Key starts with prefix **trk\_**

Cloudidr API Key is required in the API calls with **X-Cloudidr-Key**

```text theme={null}
curl https://api.llm-ops.cloudidr.com/v1/chat/completions \
  -H "Authorization: Bearer your-openai-key" \
  -H "Content-Type: application/json" \
  -H "X-Cloudidr-Key: trk_9H4V2Bxxxxxxxxxxxxxx" \
  -H "X-Department: Engineering" \
  -H "X-Project: PoC-New" \
  -H "X-Agent: chatbot" \
  -d '{
    "model": "gpt-4",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'
```
