{"openapi":"3.1.0","info":{"title":"DocsRTL","version":"1.0.0","description":"Translate Word documents between 40+ languages while preserving all formatting. Strong RTL support (Hebrew, Arabic, Persian, Urdu) with automatic right-to-left layout, plus full LTR support (English, French, Spanish, etc.) for round-trip translation in any direction. Submit a document URL, get a job_id, poll for completion, then download the translated file."},"servers":[{"url":"https://docsrtl.com/v1"}],"security":[{"apiKey":[]}],"components":{"securitySchemes":{"apiKey":{"type":"apiKey","in":"header","name":"X-API-Key"}}},"paths":{"/translate-url":{"post":{"operationId":"translate_document","summary":"Translate a document from a URL","description":"Submit the URL of a Word document (.docx, .doc, .odt, .rtf) to translate. Returns job_id. Poll /jobs/{job_id} until status is 'completed', then call /jobs/{job_id}/download.","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["url","target_lang"],"properties":{"url":{"type":"string","format":"uri","description":"HTTPS URL of the document."},"target_lang":{"type":"string","description":"Target language name. Supports 40+ languages in any direction (e.g. Hebrew, Arabic, English, French, Spanish, German, Chinese, Japanese). See /v1/languages for the full list."},"source_lang":{"type":"string","default":"auto","description":"Source language or 'auto' for auto-detection."},"translation_mode":{"type":"string","enum":["professional","full","literal"],"default":"professional","description":"Translation quality mode."}}}}}},"responses":{"202":{"description":"Job queued","content":{"application/json":{"schema":{"type":"object","properties":{"job_id":{"type":"string"},"status":{"type":"string"},"poll_url":{"type":"string"}}}}}}}}},"/jobs/{job_id}":{"get":{"operationId":"get_job_status","summary":"Poll translation job status","parameters":[{"name":"job_id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Job status","content":{"application/json":{"schema":{"type":"object","properties":{"job_id":{"type":"string"},"status":{"type":"string","enum":["pending","processing","completed","failed"]},"download_url":{"type":"string","nullable":true}}}}}}}}},"/jobs/{job_id}/download":{"get":{"operationId":"download_translation","summary":"Download the translated document","parameters":[{"name":"job_id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Translated DOCX file","content":{"application/vnd.openxmlformats-officedocument.wordprocessingml.document":{"schema":{"type":"string","format":"binary"}}}}}}}}}