PressOne eSIM Developer Platform
  1. Check balance
PressOne eSIM Developer Platform
  • OVERVIEW
    • Introduction
    • Attribute descriptions
    • FAQ
    • User journeys
      • Top-up Journey
      • Purchase Journey
    • Guides
      • eSIM installation methods for API Partners
      • How to generate the QR code for an eSIM
  • REST API
    • Data / Data + Voice + SMS eSIM
      • Introduction
      • Error handling
      • Endpoints
        • Authenticate
          • Request access token
        • Check balance
          • Get balance
            GET
        • Compatible devices
          • Get compatible device lite list
        • Browse packages
          • Get packages
        • Place order
          • Submit order
        • Install eSIM
          • Get eSIM
          • Get installation instructions
        • Monitor usage
          • Get usage (data, text & voice)
        • Place top up order
          • Get top-up package list
          • Submit top-up order
        • Manage orders
          • Get order list
          • Get order
        • Manage eSIMs
          • Get eSIMs list
          • Get eSIM package history
    • Voice-only eSIM
      • Getting Started
      • Error handling
      • Endpoints
        • List Available Numbers
        • Claim Number
        • Renew Number
        • List User
  1. Check balance

Get balance

GET
/customer/v2/balance
This feature allow you to know your account balances, so you can have an overview on your financial portfolio. You can monitor my balances and can top-up my PressOne credit to avoid order failing due to Insufficient funds If there is no account, the response should be an empty array for the accounts

Request

Header Params

Responses

🟢200Get balance
text/plain
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://prod.your-api-server.com/customer/v2/balance' \
--header 'Authorization: Bearer {{token}}'
Response Response Example
{
    "data": {
        "balances": {
            "name": "balance",
            "availableBalance": {
                "amount": 0,
                "currency": "USD"
            }
        }
    },
    "meta": {
        "message": "success"
    }
}
Modified at 2025-11-16 21:59:11
Previous
Check balance
Next
Get compatible device lite list
Built with