Documentation

Getting Started

Welcome to Insurlink Hub API. This guide will help you get up and running quickly.

Overview

Insurlink Hub provides a comprehensive API for managing insurance policies, payments, claims, and more. Our API follows RESTful principles and returns JSON responses.

Base URL

All API requests should be made to:

# Production
https://api.insurlink.com/v1

# Sandbox (for testing)
https://sandbox-api.insurlink.com/v1
bash

Quick Start

1. Get Your API Key

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

2. Make Your First Request

Test the API with a simple request:

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

3. Handle Responses

All responses follow a consistent format:

{
  "success": true,
  "data": {
    // Response data
  },
  "message": "Operation successful"
}
json

Next Steps