Authentication¶
All API requests require authentication using an API key.
Getting Your API Key¶
Sign up at platform.mippia.com
Navigate to your dashboard
Go to Settings > API Keys
Generate a new API key
Copy and store it securely
Using Your API Key¶
Include your API key in the Authorization header for all requests:
Authorization: Bearer YOUR_API_KEY
Example Request¶
curl https://platform.mippia.com/api/v1/ai-detection/standard \
-H "Authorization: Bearer YOUR_API_KEY" \
-X POST \
-F "file=@/path/to/your/track.mp3"
⚠️ Warning: Never share your API key publicly or commit it to version control.