Paradigm API Documentation
Programmatic access to lead enrichment, email personalization, blueprint management, and auto responder configuration.
https://paradigm-api-a9111b9383f1.herokuapp.com/v1Getting Started
The Paradigm API provides programmatic access to core platform features. Use it to automate lead enrichment, generate personalized emails, manage blueprints, and configure auto responders.
curl -X GET "https://paradigm-api-a9111b9383f1.herokuapp.com/v1/jobs" \
-H "X-API-Key: pk_live_your_api_key_here"Authentication
All API endpoints require authentication using an API key. Include your key in the X-API-Key header with every request.
API keys can be created and managed in your Paradigm dashboard under Settings > API Keys. Keys use the format pk_live_....
Keep your API keys secure
Never expose API keys in client-side code, public repositories, or share them publicly. If a key is compromised, regenerate it immediately from your dashboard.
Rate Limiting
The API is rate limited to 100 requests per minute per API key.
Credits & Pricing
Write operations that trigger AI research or email personalization consume credits. Read operations, template management, and auto responder configuration are free.
| Operation | Research Mode | Credits |
|---|---|---|
| Create Job | standard | 1 |
| Create Job | premium | 2 |
| Create Enrichment | standard | 1 |
| Create Enrichment | premium | 2 |
| All read / list / delete ops | — | Free |
| Blueprint management | — | Free |
| Auto responder config | — | Free |
Premium research mode uses deeper AI analysis for higher quality results. Credits are deducted at the time of request and automatically refunded if the operation fails.
Error Handling
All errors return a consistent JSON structure:
{
"error": {
"code": "ERROR_CODE",
"message": "Human-readable error message"
}
}| Status | Code | Description |
|---|---|---|
| 400 | VALIDATION_ERROR | Invalid request parameters |
| 401 | MISSING_API_KEY | No API key provided |
| 401 | INVALID_API_KEY | API key is invalid or inactive |
| 402 | INSUFFICIENT_CREDITS | Not enough credits for this operation |
| 404 | NOT_FOUND | Resource not found |
| 429 | RATE_LIMITED | Too many requests |
| 500 | INTERNAL_ERROR | Server error |
Jobs
Create and manage enrichment and personalization jobs. Jobs process leads through AI research and email customization pipelines.
Enrichments
Access and create enrichment data for leads. Enrichments contain AI-researched company and person intelligence used for personalization.
Blueprints
Manage enrichment templates (research blueprints) and customization templates (email personalization blueprints). All blueprint operations are free.
Enrichment Templates
Customization Templates
Auto Responders
Configure and manage AI-powered email and LinkedIn auto responders. All auto responder management operations are free.
Email Auto Responders
LinkedIn Auto Responders
API Sandbox
Try out the API interactively. Select an endpoint below to see the full request and response cycle. These are simulated responses showing exactly what you'd receive from the live API.
Request
curl -X GET "https://paradigm-api-a9111b9383f1.herokuapp.com/v1/jobs?status=completed&limit=5" \
-H "X-API-Key: pk_live_your_api_key_here"