> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vouchmark.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Pricing rates

> Get current pricing for all billable actions.

Returns the live pricing table for every billable action. Use this to build cost estimators or display pricing in your own UI.

<Note>
  Each rate includes both `price` (in **naira**) and `priceKobo` (in **kobo**). They describe the same amount (`priceKobo` = `price` × 100).
</Note>

## Query parameters

None.

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.vouchmark.com/v1/wallet/pricing-rates \
    -H "Authorization: Bearer $TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "rates": [
      {
        "actionKey": "vouch_ai_per_1k_tokens",
        "price": 200,
        "priceKobo": 20000,
        "description": "...",
        "category": "..."
      }
    ]
  }
  ```
</ResponseExample>

## Response fields

<ResponseField name="success" type="boolean" />

<ResponseField name="rates" type="object[]">
  <Expandable title="rate">
    <ResponseField name="actionKey" type="string">
      Stable identifier for the billable action.
    </ResponseField>

    <ResponseField name="price" type="number">
      Price in naira.
    </ResponseField>

    <ResponseField name="priceKobo" type="number">
      Price in kobo.
    </ResponseField>

    <ResponseField name="description" type="string" />

    <ResponseField name="category" type="string" />
  </Expandable>
</ResponseField>

Pricing may change — always fetch live rates rather than hardcoding.
