Authentication
API key authentication for Chipp API
Authentication
💡
API access requires a Pro plan or higher. Free accounts cannot access the API. Upgrade to Pro
Getting Your API Key
- Log into app.chipp.ai
- Navigate to your application
- Click Share in the sidebar
- Find the "Share via API" section
- Click the eye icon to reveal your API key
- Copy your API key
Tip: The Share tab includes a ready-to-use curl example with your app's model name. Click the copy button to get a working request with your API key included.
Using Your API Key
Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY
Example
curl https://app.chipp.ai/api/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "myapp-123",
"messages": [{"role": "user", "content": "Hello!"}]
}'
Required Headers
Header | Value |
---|---|
Authorization | Bearer YOUR_API_KEY |
Content-Type | application/json |
Error Responses
Authentication Errors (401)
{
"error": "Missing API key"
}
No Authorization header provided.
{
"error": "Invalid API key"
}
The API key is incorrect or doesn't match the application.
{
"error": "This API is only available on a paid plan. Visit your dashboard to upgrade."
}
Free accounts cannot access the API. Requires Pro plan or higher.