{"service":"DOCX to PDF Conversion API","version":"1.0.0","endpoints":{"/":"API documentation","/health":"Health check endpoint (no auth required)","/convert":"POST endpoint for converting single DOCX to PDF (requires authentication)","/convert-multiple":"POST endpoint for converting multiple DOCX files to combined PDF (requires authentication)"},"authentication":{"required":true,"method":"API Key","headers":["X-API-Key","Authorization: Bearer <api-key>"],"note":"Contact administrator for API key"},"usage":{"single_file":{"method":"POST","endpoint":"/convert","contentType":"multipart/form-data","formField":"docx","headers":{"X-API-Key":"your-api-key-here"},"response":"application/pdf file download with performance metrics"},"multiple_files":{"method":"POST","endpoint":"/convert-multiple","contentType":"multipart/form-data","formField":"docx[]","headers":{"X-API-Key":"your-api-key-here"},"response":"Combined PDF file download with performance metrics","note":"Files are combined in the order they are uploaded"}},"examples":{"single_file":"curl -X POST -H \"X-API-Key: your-api-key\" -F \"docx=@file.docx;type=application/vnd.openxmlformats-officedocument.wordprocessingml.document\" /convert -o output.pdf","multiple_files":"curl -X POST -H \"X-API-Key: your-api-key\" -F \"docx[]=@file1.docx;type=application/vnd.openxmlformats-officedocument.wordprocessingml.document\" -F \"docx[]=@file2.docx;type=application/vnd.openxmlformats-officedocument.wordprocessingml.document\" /convert-multiple -o combined.pdf","typescript":"See README.md for TypeScript examples"}}