Connect to
any system
Pathience exposes a REST API for document generation. Your policy admin system, quoting engine, or portal calls the API—Pathience returns filled PDFs.
Built for developers
No SDKs to install, no complex setup. Standard REST API that works with any technology stack.
REST API
Standard REST endpoints with JSON payloads. Easy to integrate with any language or platform—Node.js, Python, Java, .NET, or direct HTTP calls.
Simple Authentication
API keys for server-to-server calls. Generate keys in the dashboard, include in your request headers. No complex OAuth flows required.
Synchronous Generation
Call the API, get a PDF back. Documents generate in seconds. Returns a signed URL to download the filled document directly.
Your Data, Your Schema
You define the data model. Your systems send JSON matching your schema. Pathience fills the forms and returns the result.
Simple to integrate
One API call to generate a filled document
// Generate a filled policy document
const response = await fetch(
'https://api.pathience.com/v1/packages/{packageId}/generate',
{
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
version: 'v2.1.0', // or branch name
data: {
insured: {
name: 'Acme Corporation',
address: {
street: '123 Main St',
city: 'Austin',
state: 'TX',
zip: '78701'
}
},
coverage: {
liability_limit: 1000000,
deductible: 5000,
effective_date: '2024-01-01'
},
// ... your data model fields
}
})
}
);
const { url, expiresAt } = await response.json();
// Download the PDF from the signed URLHow it fits in your stack
Your Systems
Output
Common integration patterns
How teams connect Pathience to their existing systems
Policy Admin Integration
Your policy admin holds the data. When you need documents, call Pathience.
Quoting Engine
Generate quotes on the fly. Pass quote data, get filled proposals instantly.
Agent Portal
Give agents self-service document generation from your portal.
Renewal Processing
Batch-generate renewal documents with updated terms and rates.
Start building today
Sign up to get your API keys and start testing document generation.