MP3-AI API
Free RESTful API for Free AI Audio Tools. Process files programmatically.
✅ Free Tier: 100 requests/day, no API key needed. Rate Limited
Base URL
https://api.mp3-ai.com/v1
Authentication
Free tier requires no authentication. For higher limits, include your API key:
Authorization: Bearer YOUR_API_KEY
Endpoints
POST/process
Process a file with the specified tool.
filebinaryThe file to process (multipart/form-data)
toolstringTool name (e.g., "compress", "convert")
optionsobjectTool-specific options (optional)
GET/tools
List all available tools and their capabilities.
GET/status/{task_id}
Check the status of an async processing task.
Example
curl -X POST https://api.mp3-ai.com/v1/process \
-F "
[email protected]" \
-F "tool=compress" \
-F "options={\"quality\":\"medium\"}"
Response
{
"success": true,
"task_id": "abc123",
"download_url": "https://api.mp3-ai.com/v1/download/abc123",
"expires_in": 3600
}
SDKs & Libraries
Coming soon: Python, Node.js, and Go SDKs. Embed our tools on your website in the meantime.
Need higher limits? Contact [email protected] for enterprise plans.