API Overview and Architecture
Base URLs All API requests use HTTPS. There are two environments: Environment Base URL Purpose Sandbox https://sandbox-api.aelix.digitalapi.ai Development and...
Find tutorials, API references, SDK guides, and integration walkthroughs.
Base URLs All API requests use HTTPS. There are two environments: Environment Base URL Purpose Sandbox https://sandbox-api.aelix.digitalapi.ai Development and...
Supported Authentication Methods 1. API Key (Simple) Suitable for server-side applications making read-only requests. Pass the key in the Authorization header:...
Error Response Format { "error": { "code": "string", "message": "Human-readable description", "trace_id": "trc_abc123", "details": [ { "field": "amount",...
Installation npm install @aelix/api-sdk # or yarn add @aelix/api-sdk Initialise the Client import { AelixClient } from '@aelix/api-sdk'; const client = new...
Installation pip install aelix-sdk # Requires Python 3.9+ Initialise the Client import os from aelix import AelixClient client = AelixClient(...
Event Delivery Guarantees At-least-once delivery — Aelix may deliver the same event more than once. Your handler must be idempotent Ordering — Events are...
Problem: 401 Unauthorized on Every Request Most common causes: Token expired — Access tokens expire after 3,600 seconds. Implement token refresh logic Wrong...
2025-04-01 — API Version 2025-04-01 New Added GET /v1/transactions/export for bulk CSV export of transaction history Added POST /v1/payments/batch for...
Before You Go Live Going live with your Aelix integration is straightforward, but completing this checklist will prevent the most common production issues. ✅...