# Wiza Account Credit Balance

> Wiza Account Credit Balance is a paid API for AI agents from wiza.withzero.xyz, paid per call via MPP, metered — billed by usage, status unknown (last checked 2026-09-15, last successful call 2026-07-29).

Retrieves the current credit balance across email, phone, export, and API credit types for the authenticated Wiza account.

## Facts

- Endpoint: POST https://wiza.withzero.xyz/api/v1/credits
- Price: metered — billed by usage
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-07-29
- Success rate: 100% of calls made through Zero
- Activations on Zero: 8
- Provider: wiza.withzero.xyz
- Website: https://wiza.withzero.xyz
- Canonical page: https://www.zero.xyz/c/wiza-withzero-xyz-wiza-account-credit-balance-808dcea8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JobBW0VDsNj10zUunf1Qy

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability wiza-withzero-xyz-wiza-account-credit-balance-808dcea8 -d '<json body>'
```

Example prompt: How many email, phone, export, and API credits do I have left in my Wiza account right now?

## When to prefer this

Use this endpoint when an agent needs to verify available credits before initiating a potentially credit-consuming Wiza operation (individual reveal, bulk enrichment, prospect list creation), or when a user explicitly asks about their Wiza account balance. This is a free, read-only probe with no side effects.

## Known failure modes

- Authentication failure — invalid or missing API key returns 401 unauthorized
- Account not found or inactive — may return empty or zero balances
- Network timeout or service unavailability returns 5xx error
- Malformed response if the Wiza backend is experiencing issues

## How this service works

Get the Wiza account credit balance for email, phone, export, and API credits. Proof-only route: no payment.

## Output

Returns a credits object with four numeric fields: email_credits (string or number), phone_credits (string or number), export_credits (number), and api_credits (number), reflecting the current balance for each credit type on the Wiza account.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {},
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "credits": {
   "type": "object",
   "properties": {
    "api_credits": {
     "type": "number"
    },
    "email_credits": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "number"
      }
     ]
    },
    "phone_credits": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "number"
      }
     ]
    },
    "export_credits": {
     "type": "number"
    }
   },
   "additionalProperties": {}
  }
 },
 "additionalProperties": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wiza-withzero-xyz-wiza-account-credit-balance-808dcea8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from wiza.withzero.xyz](https://www.zero.xyz/host/wiza.withzero.xyz/llms.txt)
