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
- Click Settings in the left sidebar, or navigate directly to
/account. - Click API & Webhooks in the account section list.
- Your API key is shown in the API key field. Click Copy API key to copy it.

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
- Get a presigned upload URL:
POST /api/v1/agent/documents/upload-url - Upload your PDF directly to S3 using the presigned URL.
- Create an extraction job:
POST /api/v1/agent/jobs - Poll until done:
GET /api/v1/agent/jobs/:id - 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.