API Keys
Use API keys to access the Datronis converter programmatically, or let an AI agent search jobs, build your resume, apply on your behalf, and publish news via MCP.
How to use your API key β Converter API
# Upload a file for conversion
curl -X POST "https://api.datronis.com/api/v1/convert?from=pdf&to=docx" \
-H "X-API-Key: dtk_your_key_here" \
-F "file=@document.pdf"
# Check status
curl "https://api.datronis.com/api/v1/jobs/{jobId}" \
-H "X-API-Key: dtk_your_key_here"
# Download result
curl -L "https://api.datronis.com/api/v1/download/{jobId}" \
-H "X-API-Key: dtk_your_key_here" -o result.docxHow to let an AI agent search jobs, build your resume, and publish news β MCP
Add Datronis as an MCP server in Claude Desktop, Cursor, or any MCP-compatible client (config below), then pass a key as the api_key argument β or better, as an Authorization: Bearer header β on any of the 19 available tools: search and apply to jobs, create or update your resume, check application status, or draft and publish news.
{
"mcpServers": {
"datronis": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://api.datronis.com/api/mcp", "--header", "Authorization: Bearer dtk_your_key_here"]
}
}
}
// Or, in your AI client's prompt, for a key not yet configured on the connection itself:
// "Search remote React jobs on Datronis and apply to the best match
// using api_key dtk_your_key_here"Full setup guide, all 19 tools, and example prompts: /docs/mcp-integration/