API Documentation
Integrate DocConvert into your applications. Available on Business plan.
Authentication
All API requests require a token in the Authorization header.
Authorization: Token YOUR_API_KEY
Get your API key from the Dashboard → API Keys.
POST
/api/v1/upload/
Upload a file and start a conversion.
curl -X POST https://docconvert.io/api/v1/upload/ \ -H "Authorization: Token YOUR_KEY" \ -F "file=@document.pdf" \ -F "conversion_type=pdf_to_docx"
GET
/api/v1/jobs/{id}/
Check the status of a conversion job.
curl /api/v1/jobs/JOB_ID/ \
-H "Authorization: Token YOUR_KEY"
# Response:
{"id":"...","status":"completed","progress":100,"download_url":"..."}