Skip to main content
GET
/
v1
/
wallet
/
pricing-rates
curl https://api.vouchmark.com/v1/wallet/pricing-rates \
  -H "Authorization: Bearer $TOKEN"
{
  "success": true,
  "rates": [
    {
      "actionKey": "vouch_ai_per_1k_tokens",
      "price": 200,
      "priceKobo": 20000,
      "description": "...",
      "category": "..."
    }
  ]
}
Returns the live pricing table for every billable action. Use this to build cost estimators or display pricing in your own UI.
Each rate includes both price (in naira) and priceKobo (in kobo). They describe the same amount (priceKobo = price × 100).

Query parameters

None.
curl https://api.vouchmark.com/v1/wallet/pricing-rates \
  -H "Authorization: Bearer $TOKEN"
{
  "success": true,
  "rates": [
    {
      "actionKey": "vouch_ai_per_1k_tokens",
      "price": 200,
      "priceKobo": 20000,
      "description": "...",
      "category": "..."
    }
  ]
}

Response fields

success
boolean
rates
object[]
Pricing may change — always fetch live rates rather than hardcoding.