API Documentation

Authentication

All API requests require an API key sent in the X-API-Key header.

curl -X POST \
  -H "X-API-Key: YOUR_API_KEY" \
  -F "file=@document.pdf" \
  https://api.fileconverterhub.com/v1/convert

API Endpoints

Convert File

POST /v1/convert

Convert files between supported formats

{
  "file": "base64_encoded_file",
  "format": "docx",
  "options": {
    "quality": 90
  }
}

Check Conversion Status

GET /v1/status/:job_id

Check status of a conversion job

Rate Limiting

Free tier allows 100 requests/hour. Upgrade for higher limits.