REST API
Full-featured REST API with OpenAPI documentation. Authenticate via API keys or OAuth 2.0. Real-time inference endpoints, Batch processing APIs, Rate limiting & quotas, OpenAPI 3.0 specification, SDKs for Python, JavaScript, Go
Last updated:
DEVELOPERS
Integrate decision infrastructure with Guidewire, Duck Creek, and your CMS. REST API, webhooks, and connectors — documentation provided after pilot or enterprise access.
Full API documentation, authentication credentials, and integration support are provided after a design partner pilot or enterprise access is approved. Most teams start with claims integration on Guidewire or Duck Creek.
Full-featured REST API with OpenAPI documentation. Authenticate via API keys or OAuth 2.0. Real-time inference endpoints, Batch processing APIs, Rate limiting & quotas, OpenAPI 3.0 specification, SDKs for Python, JavaScript, Go
Push notifications for events, decisions, and alerts. Configure custom endpoints for your systems. Event-driven notifications, Reliable delivery with automatic retries, Signature verification, Payload customization, Webhook management API
For high-volume use cases, connect directly to your data warehouse or operational database. Read-only or read-write modes, Encrypted connections, Private network connectivity, Custom data pipelines, Query optimization
Pre-built connectors for major platforms. Deploy with minimal configuration. Salesforce, SAP, Workday, AWS, Azure, GCP integrations, Auto-sync configurations, Monitoring dashboards, One-click deployment
Integrate claims decision workflows with your CMS through REST API, webhooks, and pre-built connectors.
/api/askSubmit queries to the IntelliHuman knowledge engine. Returns expert reasoning, policy citations, and recommendations.
Auth: API Key or OAuth 2.0
{
"request": {
"query": "What are the coverage requirements for water damage claims?",
"user_email": "user@example.com",
"organization_slug": "acme-insurance",
"max_context_tokens": 4000,
"model_preference": "claude-3-opus",
"knowledge_layers": [
"vertical",
"enterprise"
]
},
"response": {
"answer": "Based on policy language and industry standards...",
"citations": [
"chunk_id_1",
"chunk_id_2"
],
"reasoning_trail": "...",
"confidence_score": 0.92
}
}/api/verticalsRetrieve all available industry verticals and their capabilities.
Auth: None (Public)
{
"request": {},
"response": [
{
"id": "insurance",
"name": "Insurance",
"modules": [
"claims",
"underwriting"
]
},
{
"id": "healthcare",
"name": "Healthcare",
"modules": [
"prior-auth",
"utilization"
]
}
]
}/api/inferenceExecute decision workflow inference for specific use cases (claims triage, coverage reasoning, prior auth, logistics, etc.).
Auth: API Key or OAuth 2.0
{
"request": {
"module": "claims",
"input": {
"claim_data": "...",
"policy_id": "..."
},
"organization_slug": "acme-insurance"
},
"response": {
"recommendation": "Coverage applies",
"reasoning": "...",
"confidence": 0.88,
"audit_trail": "..."
}
}/api/webhooksSet up webhook endpoints to receive real-time notifications for events, decisions, and alerts.
Auth: API Key
{
"request": {
"url": "https://your-system.com/webhooks/intellihuman",
"events": [
"decision_made",
"module_updated",
"alert_triggered"
],
"secret": "your_webhook_secret"
},
"response": {
"webhook_id": "wh_123456",
"status": "active",
"created_at": "2025-01-15T10:00:00Z"
}
}Simple authentication using API keys. Best for server-to-server integrations.
Standard OAuth 2.0 flow for secure, token-based authentication. Best for user-facing applications.
Enterprise SSO integration for organizations with existing identity providers.
REST API access for integrating decision infrastructure with your systems, workflows, and AI agents:
Start with a 90-day claims pilot on your Guidewire or Duck Creek stack — API access included during onboarding.