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

# Credit Deduction Behavior

> Understand how credits are consumed

Credits are pre-paid in bulk and deducted only when data is successfully returned:

| Data Type       | Enrichment Level                          | Credits Deducted                                           |
| --------------- | ----------------------------------------- | ---------------------------------------------------------- |
| Phones          | `"enrichment_level": "phone"` or `"full"` | 5 credits if at least one phone number is returned         |
| Emails          | `"enrichment_level": "email"` or `"full"` | 2 credits if at least one "valid" marked email is returned |
| Profile Details | `"enrichment_level": "none"`              | 1 credit if a Profile URL is found and matched             |

## Confirming Credit Deductions

After making a POST request and retrieving results via the GET endpoint (`https://wiza.co/api/individual_reveals/{id}`), you can confirm the credits that were deducted in the response under the `credits` object.

The relevant fields include:

* **api\_credits.total** – Total API credits deducted by this request
* **api\_credits.email\_credits** – Number of credits deducted due to emails found
* **api\_credits.phone\_credits** – Number of credits deducted due to phones found
* **api\_credits.scrape\_credits** – Number of credits deducted when Profile URLs are successfully matched. Unmatched Profile URLs are not charged.

**Sample GET Response Snippet:**

```json theme={"dark"}
"credits": {
    "api_credits": {
        "total": 5,
        "email_credits": 0,
        "phone_credits": 5,
        "scrape_credits": 0
    }
}
```
