# How can I track my funds?

### How can I check my current balance?

* On your [billing page](https://aimlapi.com/app/billing) in the dashboard.
* Via [the API](https://docs.aimlapi.com/api-references/service-endpoints/account-balance).

### Where can I see my outgoing balance?

On [the usage page](https://aimlapi.com/app/usage) in your dashboard, your balance is displayed in credits and is automatically deducted based on model usage.

***

### How are real payments converted into usage credits?

AI/ML API uses a unified credit system for all models. Your balance is displayed in credits and automatically deducts based on model usage.

**Conversion Rate:** $1 USD = 2,000,000 credits

**Example calculations:**

* $0.05 = 100k credits
* $0.50 = 1M credits
* $5.00 = 10M credits
* $50.00 = 100M credits

***

### Where can I check in advance how much a specific model call will cost?

You can find the pricing for all available models on [the pricing page](https://aimlapi.com/ai-ml-api-pricing).

***

### Where can I see how many credits were actually spent for a request?

The number of credits actually consumed by a request is returned in the `credits_used` field of the API response.

Here are example response snippets showing usage information for different model categories.

<details>

<summary>Chat model (v1/chat/completions)</summary>

{% code overflow="wrap" %}

```json
  "usage": {
    "completion_tokens": 114,
    "prompt_tokens": 48,
    "total_tokens": 162,
    "prompt_tokens_details": {
      "cached_tokens": 0
    },
    "completion_tokens_details": {
      "reasoning_tokens": 90
    }
  },
  "meta": {
    "usage": {
      "credits_used": 625
    }
  }
```

{% endcode %}

</details>

<details>

<summary>Chat model example response (v1/responses)</summary>

{% code overflow="wrap" %}

```json
  "usage": {
    "input_tokens": 7,
    "input_tokens_details": {
      "cached_tokens": 0
    },
    "output_tokens": 35,
    "output_tokens_details": {
      "reasoning_tokens": 0
    },
    "total_tokens": 42
  },
```

{% endcode %}

</details>

<details>

<summary>Image model example response</summary>

{% code overflow="wrap" %}

```json
  "meta": {
    "usage": {
      "credits_used": 91000
    }
  }
```

{% endcode %}

</details>

<details>

<summary>Video model example response</summary>

{% code overflow="wrap" %}

```json
```

{% endcode %}

</details>

<details>

<summary>Music model example response</summary>

{% code overflow="wrap" %}

```json
```

{% endcode %}

</details>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.aimlapi.com/faq/how-can-i-track-my-funds.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
