Skip to content

Getting Started

Welcome to the Iagon Insight API documentation.

Overview

This documentation provides comprehensive information about the Iagon Insight API, including authentication, available endpoints, and usage examples.

Base URL

https://api.fireblocks.partners.iagon.com

All versioned endpoints are prefixed with /v1 (e.g., /v1/utxos/address/:address). The health endpoint is available at both /health and /v1/health.

Quick Start

  1. Authenticate to obtain your API credentials
  2. Make your first API call to any of the available endpoints
  3. Handle responses and errors appropriately

Response Format

All API responses are returned in JSON format:

json
{
  "success": true,
  "data": {
    // Response data
  }
}

Error Handling

Errors follow a consistent format:

json
{
  "success": false,
  "error": {
    "code": "ERROR_CODE",
    "message": "Human-readable error message"
  }
}