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

# Get an API key

> Create an Interhuman account and generate API keys from the platform.

Use [https://platform.interhuman.ai](https://platform.interhuman.ai) to create and manage your API keys.

## New to Interhuman? Start here

1. Go to [https://platform.interhuman.ai](https://platform.interhuman.ai).
2. Sign up for a free account.
3. Follow the onboarding steps and you will quickly get an API key.

## Already have an account? Create a key

1. From the dashboard sidebar, open **API Keys**.

<img src="https://mintcdn.com/interhuman-beta/bRNugTmIIAU--dK_/assets/get-api-key/how-to-get-api-key-1-light.png?fit=max&auto=format&n=bRNugTmIIAU--dK_&q=85&s=da1d60b216e6845a2ceebb47ce98039c" alt="Dashboard with API Keys menu item highlighted" className="block dark:hidden" width="2834" height="1872" data-path="assets/get-api-key/how-to-get-api-key-1-light.png" />

<img src="https://mintcdn.com/interhuman-beta/bRNugTmIIAU--dK_/assets/get-api-key/how-to-get-api-key-1-dark.png?fit=max&auto=format&n=bRNugTmIIAU--dK_&q=85&s=bc39c67b694bfd96ff25bf73307aaeab" alt="Dashboard with API Keys menu item highlighted" className="hidden dark:block" width="2756" height="1808" data-path="assets/get-api-key/how-to-get-api-key-1-dark.png" />

2. Click `+ Create API Key`.

<img src="https://mintcdn.com/interhuman-beta/bRNugTmIIAU--dK_/assets/get-api-key/how-to-get-api-key-2-light.png?fit=max&auto=format&n=bRNugTmIIAU--dK_&q=85&s=47631be3b03e63449c057a87da528867" alt="API Keys page with + Create API Key highlighted" className="block dark:hidden" width="2834" height="1872" data-path="assets/get-api-key/how-to-get-api-key-2-light.png" />

<img src="https://mintcdn.com/interhuman-beta/bRNugTmIIAU--dK_/assets/get-api-key/how-to-get-api-key-2-dark.png?fit=max&auto=format&n=bRNugTmIIAU--dK_&q=85&s=9d7488cc9ec911d12e7b8cba4f68de1c" alt="API Keys page with + Create API Key highlighted" className="hidden dark:block" width="2756" height="1808" data-path="assets/get-api-key/how-to-get-api-key-2-dark.png" />

3. Enter a name for your key and choose whether [Model Improvement Program](/explanations/model-improvement-program) is enabled.

<img src="https://mintcdn.com/interhuman-beta/bRNugTmIIAU--dK_/assets/get-api-key/how-to-get-api-key-3-light.png?fit=max&auto=format&n=bRNugTmIIAU--dK_&q=85&s=61b361616b355ce5fb064f697584e06a" alt="Create API Key modal with name field and MIP toggle highlighted" className="block dark:hidden" width="2834" height="1872" data-path="assets/get-api-key/how-to-get-api-key-3-light.png" />

<img src="https://mintcdn.com/interhuman-beta/bRNugTmIIAU--dK_/assets/get-api-key/how-to-get-api-key-3-dark.png?fit=max&auto=format&n=bRNugTmIIAU--dK_&q=85&s=e646d6b83a3a6b6bae08f940a6707af4" alt="Create API Key modal with name field and MIP toggle highlighted" className="hidden dark:block" width="2756" height="1808" data-path="assets/get-api-key/how-to-get-api-key-3-dark.png" />

4. Copy and securely store your generated credentials.

<img src="https://mintcdn.com/interhuman-beta/bRNugTmIIAU--dK_/assets/get-api-key/how-to-get-api-key-4-light.png?fit=max&auto=format&n=bRNugTmIIAU--dK_&q=85&s=7f1cdd38b54ae14dd4a3040e94ab28b2" alt="Generated API key and key ID shown after creation" className="block dark:hidden" width="1767" height="1153" data-path="assets/get-api-key/how-to-get-api-key-4-light.png" />

<img src="https://mintcdn.com/interhuman-beta/bRNugTmIIAU--dK_/assets/get-api-key/how-to-get-api-key-4-dark.png?fit=max&auto=format&n=bRNugTmIIAU--dK_&q=85&s=48284215e6d0a940482b87f4909c4104" alt="Generated API key and key ID shown after creation" className="hidden dark:block" width="1767" height="1153" data-path="assets/get-api-key/how-to-get-api-key-4-dark.png" />

<Warning>
  Your API key is shown only once when the key is created. Store it in a secure secret manager immediately.
</Warning>

## Next: use your API key directly

You can now use your API key directly when calling the API.

```bash theme={null}
export API_KEY="YOUR_API_KEY"
export VIDEO_PATH="path_to_your_video.mp4"

curl -X POST https://api.interhuman.ai/v1/upload/analyze \
  -H "Authorization: Bearer ${API_KEY}" \
  -F "file=@${VIDEO_PATH};type=video/mp4"
```

Next step: [Upload & Analyze API](/api-reference/upload-analyze)
