Skip to main content

API Overview

All endpoints use POST method and accept JSON request bodies.

Base URL

EnvironmentURL
Productionhttps://api.isiaja.id/v1
Sandboxhttps://sandbox-api.isiaja.id/v1

Endpoints

EndpointDescription
/check-balanceCheck your current deposit balance
/price-listGet all available products and prices
/create-orderPlace a new top-up order
/check-orderCheck the status of an existing order
/order-historyGet paginated order history
/profileGet your reseller profile information

Common Request Fields

Every request must include:
{
  "api_key": "your-api-key",
  "sign": "md5-signature"
}

Common Response Format

{
  "success": true,
  "data": { ... },
  "message": "OK",
  "timestamp": "2026-03-28T10:00:00Z"
}