Getting Started

Convert your first PDF, Word document, or image to Markdown in minutes — via the dashboard or REST API.

Get up and running with Markdown Anything in minutes. Choose your path:

Create an Account

Sign up at markdownanything.com for a free account. Free accounts include 25 credits per month.

Upload a File

Navigate to your Dashboard and drag a file into the drop zone — or click to browse. We support PDF, DOCX, XLSX, PPTX, HTML, images, audio, and 20+ other formats.

Configure Options

Optionally enable Enhanced AI for scanned documents, images, audio, or other complex content. Toggle Token Optimizer to minimize output size for LLM pipelines.

Convert

Click Convert. Your Markdown will be ready for download within seconds.

Get an API Token

Go to Settings > API Tokens and create a new token. Tokens are prefixed with mda_ for easy identification.

API access is available on all paid plans.

Convert a File

Send a POST request to /api/v1/convert with your file:

curl -X POST https://markdownanything.com/api/v1/convert \
  -H "Authorization: Bearer mda_your_token_here" \
  -F "[email protected]"

Get the Result

Sync conversions return Markdown in the response body. For large files, use async mode with webhooks.

{
    "success": true,
    "markdown": "# My Document\n\nConverted content...",
    "credits_used": 1,
    "credits_remaining": 499
}

Credit Costs

Conversion TypeCredit Cost
Standard1 credit
Enhanced AI (Starter)3 credits
Enhanced AI (Professional / Business)2 credits

Plans

PlanCredits/monthPriceRate LimitMax File Size
Free25$020/min5 MB
Starter500$12/mo60/min10 MB
Professional5,000$49/mo120/min15 MB
Business25,000$149/mo240/min50 MB

Next Steps