Skip to main content
GET
/
api
/
v1
/
cards-program
/
users
/
:userId
/
balance
curl --location --request GET 'https://stablecoin-api.sandbox.getmeru.com/api/v1/cards-program/users/3ddd0e5b-6276-4b48-b756-c1fcc9a2efd1/balance' \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>'
{
  "success": true,
  "userId": "3ddd0e5b-6276-4b48-b756-c1fcc9a2efd1",
  "balance": 1250.75,
  "currency": "USD",
  "pendingBalance": 45.99,
  "updatedAt": "2024-01-17T15:45:00Z"
}

Params

userId
string
required
The unique user identifier

Response

success
boolean
Indicates whether the call was successful
userId
string
The unique user identifier
balance
number
Current available balance
currency
string
Currency code (e.g., “USD”)
pendingBalance
number
Balance pending from unsettled transactions
updatedAt
string
ISO 8601 timestamp when the balance was last updated
curl --location --request GET 'https://stablecoin-api.sandbox.getmeru.com/api/v1/cards-program/users/3ddd0e5b-6276-4b48-b756-c1fcc9a2efd1/balance' \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>'
{
  "success": true,
  "userId": "3ddd0e5b-6276-4b48-b756-c1fcc9a2efd1",
  "balance": 1250.75,
  "currency": "USD",
  "pendingBalance": 45.99,
  "updatedAt": "2024-01-17T15:45:00Z"
}

Error Responses

{
  "success": false,
  "error": "Unauthorized. Please check your authentication credentials."
}