Integrate powerful file conversion capabilities into your applications. Convert 100+ file formats with a simple REST API.
Base URL
https://api.hotconvert.com/api/v1All API endpoints that perform conversions require authentication using an API key. Include your API key in the request header.
X-API-Key: your-api-key-herecurl -X POST "https://api.hotconvert.com/api/v1/convert" \
-H "X-API-Key: your-api-key" \
-F "[email protected]" \
-F "targetFormat=docx"{
"success": true,
"message": "File successfully converted",
"data": {
"downloadUrl": "https://api.../files/abc123.docx",
"fileName": "abc123.docx",
"fileSize": 45678,
"sourceFormat": "PDF",
"targetFormat": "DOCX",
"conversionId": "abc123",
"durationMs": 1234
}
}Test the conversion API directly from your browser. Enter your API key, select a file, and try it out.
// Response will appear hereReady-to-use code snippets for different programming languages.
// Loading...