Documentation
API Documentation
Learn how to integrate ConvertInCloud's powerful file processing capabilities into your applications.
Authentication
All API requests require authentication using an API key. Include your key in the Authorization header:
Authorization Header
Authorization: Bearer YOUR_API_KEYQuick Start
Convert your first file with a simple API call:
cURL
curl -X POST https://api.convertincloud.com/v1/convert \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"input_url": "https://example.com/video.mp4",
"output_format": "webm",
"webhook_url": "https://your-app.com/webhook"
}'Response
JSON Response
{
"job_id": "job_abc123xyz",
"status": "processing",
"created_at": "2024-01-15T10:30:00Z",
"estimated_completion": "2024-01-15T10:30:45Z"
}