DocuClipper

API Access: Personal Access Tokens

Generate an API key to use DocuClipper from scripts, automations, or AI agent integrations.

A Personal Access Token (PAT) lets you authenticate to the DocuClipper API from external scripts, automation tools, or AI agents without using your login password.

Finding your API key

  1. Click Settings in the left sidebar, or navigate directly to /account.
  2. Click API & Webhooks in the account section list.
  3. Your API key is shown in the API key field. Click Copy API key to copy it.

API & Webhooks section showing the API key field and Copy button

Keep your key secret. Anyone who has it can make API calls on your behalf. If you suspect it has been compromised, contact support@docuclipper.com to rotate it.

Using the key

Add the key as a Bearer token on every request:

Authorization: Bearer YOUR_API_KEY

The base URL for all API calls is https://www.docuclipper.com/api/v1.

Quick start: extract a bank statement

  1. Get a presigned upload URL: POST /api/v1/agent/documents/upload-url
  2. Upload your PDF directly to S3 using the presigned URL.
  3. Create an extraction job: POST /api/v1/agent/jobs
  4. Poll until done: GET /api/v1/agent/jobs/:id
  5. Fetch the transactions: GET /api/v1/agent/jobs/:id/transactions

Full request/response schemas are in the API reference.

For AI agents and MCP clients

DocuClipper exposes an MCP-compatible endpoint. The docuclipper-mcp stdio shim connects Claude Desktop, Cursor, or Continue directly to your account. Setup instructions are at /api-docs/for-ai-agents.

Related