Guides / Extract

DOCX → Markdown

POST /v1/docx/to-markdown  · 

Extract a Word document as clean Markdown – headings, lists and tables preserved.

Parameters

NameTypeDescription
filefile · required.docx file.
outputstring · optionalmd (file, default) or json.

Example request

curl -X POST https://api.bigapi.dev/v1/docx/to-markdown -H 'Authorization: Bearer $KEY' -F 'file=@report.docx' -o report.md

Example response

# Annual Report

Revenue grew...

| Region | Revenue |
| --- | --- |
| EU | 1.2m |

Related guides