Last updated:

API Documentation

Integrate decision infrastructure with Guidewire, Duck Creek, and your CMS. REST API, webhooks, and connectors — documentation provided after pilot or enterprise access.

API Access

API credentials after onboarding

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.

Integration Methods

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

Webhooks

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

Direct Database Access

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

Cloud Connectors

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

API Capabilities

Integrate claims decision workflows with your CMS through REST API, webhooks, and pre-built connectors.

POST/api/ask

Query Decision Engine

Submit 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
  }
}
GET/api/verticals

List Available Verticals

Retrieve 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"
      ]
    }
  ]
}
POST/api/inference

Run Workflow Inference

Execute 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": "..."
  }
}
POST/api/webhooks

Configure Webhooks

Set 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"
  }
}

Authentication & Security

API Key

Simple authentication using API keys. Best for server-to-server integrations.

X-API-Key: your_api_key_here

OAuth 2.0

Standard OAuth 2.0 flow for secure, token-based authentication. Best for user-facing applications.

Authorization: Bearer <access_token>

SAML SSO

Enterprise SSO integration for organizations with existing identity providers.

SAML assertion via identity provider

Integration Capabilities

REST API access for integrating decision infrastructure with your systems, workflows, and AI agents:

REST API with OpenAPI specification
Webhook support for real-time events
Structured responses with reasoning trails
Rate limiting and quota management
Enterprise authentication (API keys, OAuth, SAML)
Integration support and documentation

Ready to integrate?

Start with a 90-day claims pilot on your Guidewire or Duck Creek stack — API access included during onboarding.