An API key is a password for your code. It lets your app use DocMake's document processing tools — convert, merge, summarize, and more — without opening a browser.
API stands for Application Programming Interface. It's a way for two apps to talk to each other. When you use DocMake in your browser, the browser is the "client" and DocMake is the "server." An API lets your own code be the client instead.
An API key is a unique code that identifies you. It's like a password, but for your code instead of a login form. Every request your code sends includes this key so DocMake knows who's asking.
Here's how to convert a PDF to Word using the API:
curl -X POST https://docmake.online/api/convert \
-H "X-API-Key: your_api_key_here" \
-F "file=@document.pdf" \
-F "target_format=docx"
The API returns a download URL for your converted file.
DocMake also supports MCP (Model Context Protocol) — connect your AI assistant directly. Works with Claude Desktop, Cursor, and VS Code.
Read the API Docs