API Keys

Use API keys to access the Datronis converter programmatically.

How to use your API key

# 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.docx

How to let an AI agent search and apply to jobs — MCP

Add Datronis as an MCP server in Claude Desktop, Cursor, or any MCP-compatible client, then pass this key as the api_key argument on apply_to_job, list_my_resumes, and get_my_applications.

{
  "mcpServers": {
    "datronis": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://api.datronis.com/api/mcp"]
    }
  }
}

// Then, in your AI client:
// "Search remote React jobs on Datronis and apply to the best match
//  using api_key dtk_your_key_here"

Your API Keys(0/5)