Runa · Example Payload

Runa Get Balance Example

Gift CardsRewardsPaymentsIncentivesPayouts

Runa Get Balance Example is an example object payload from Runa, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.runa.io/v2/balance?currency=USD",
    "headers": {
      "X-Api-Key": "YOUR_RUNA_API_KEY",
      "X-Api-Version": "2024-02-05"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "balance": "1250.00",
      "currency": "USD"
    }
  }
}