Quick Start

Get up and running with Doclayer in under 5 minutes.

1

Install CLI

Install the Doclayer CLI via pip

pip install doclayer-cli
2

Authenticate

Login or set your API key

# Interactive login
doclayer auth login

# Or use API key
export DOCLAYER_API_KEY=dl_your_key_here
3

Process a document

Run your first document analysis

doclayer document process invoice.pdf --agent finance.invoice-summary --wait

Available Agents

finance.invoice-summary

Invoice Processing

contracts.nda-summary

Contract Analysis

legal.compliance-check

Compliance Checking

hr.cv-screener

Resume Screening

Run doclayer agent list to see all 40+ available templates.

Example Output

invoice-analysis.json
{
  "document_id": "doc_12345",
  "status": "completed",
  "insights": {
    "vendor": "Acme Corporation",
    "invoice_number": "INV-2024-001",
    "date": "2024-01-15",
    "total": 6480.00,
    "currency": "USD"
  }
}