Documentation

Quick Start Integration

Get up and running with Insurlink Hub API in 5 minutes.

Step 1: Get Your API Key

Sign up for an account and generate your API key from the dashboard.

# Your API key will look like this:
sk_live_1234567890abcdefghijklmnopqrstuvwxyz
bash

Step 2: Make Your First Request

Test the API by fetching your organizations:

curl https://api.insurlink.com/v1/organizations \
  -H "Authorization: Bearer YOUR_API_KEY"
bash

Step 3: Create Your First Policy

Create an insurance policy:

curl -X POST https://api.insurlink.com/v1/business/policies \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Comprehensive Auto Insurance",
    "type": "auto",
    "price": "50000.00",
    "duration": "yearly",
    "coverage": "Comprehensive"
  }'
bash

Next Steps