Quick Start
Get up and running with Doclayer in under 5 minutes.
1
Install CLI
Install the Doclayer CLI via pip
pip install doclayer-cli2
Authenticate
Login or set your API key
# Interactive login
doclayer auth login
# Or use API key
export DOCLAYER_API_KEY=dl_your_key_here3
Process a document
Run your first document analysis
doclayer document process invoice.pdf --agent finance.invoice-summary --waitAvailable Agents
finance.invoice-summaryInvoice Processing
contracts.nda-summaryContract Analysis
legal.compliance-checkCompliance Checking
hr.cv-screenerResume 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"
}
}