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/v1/models/ai-detection-standard \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-X POST \
-d '{
"file_path": "https://example.com/track.mp3",
"filename": "track.mp3"
}'
Warning
Never share your API key publicly or commit it to version control.