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.comAll 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
- Authenticate to obtain your API credentials
- Make your first API call to any of the available endpoints
- 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"
}
}