eSIMTrade Docs
api.esimtrade.com
Simpler, clearer reseller API docs.
Start with authentication, check wallet balance, read plans, and then move into orders and inventory. These docs are designed to help teams integrate faster with less scrolling and less guessing.
Wallet Balance
Read the prepaid wallet balance used for reseller purchasing and reconciliation checks.
Endpoint
GET /portal/balance
Endpoint behavior
This route returns the reseller wallet balance in both display-friendly and raw cent-based forms. It is the fastest way to verify whether the prepaid wallet is sufficiently funded before purchase attempts.
Balance request
curl --location --request GET 'https://api.esimtrade.com/api/v1/portal/balance' \ --header 'x-access-code: YOUR_ACCESS_CODE' \ --header 'x-secret-key: YOUR_SECRET_KEY'
Live response shape
{
"data": {
"balance": "$59.00",
"walletBalanceUsd": "59.00",
"walletBalanceCents": 5900
}
}On this page