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

# Get Account Balance

> Get the DataForSEO account balance, deposits, spend today and this month, spend limits, and whether the Backlinks and LLM Mentions subscriptions are active and until when

Get the DataForSEO account balance, deposits, spend today and this month, spend limits, and whether the Backlinks and LLM Mentions subscriptions are active and until when. Free. All DataForSEO tools need a Markifact connection holding the API login and API password from app.dataforseo.com/api-access; every other tool is billed to the balance and reports its cost in USD.

|                      |                                  |
| -------------------- | -------------------------------- |
| **App**              | DataForSEO                       |
| **Operation ID**     | `dataforseo_get_account_balance` |
| **Type**             | Action                           |
| **Connection**       | `dataforseo` (required)          |
| **Credits per run**  | Free                             |
| **Agent / MCP tool** | Yes                              |

## Inputs

| Field | Type | Required | Default | Description |
| ----- | ---- | -------- | ------- | ----------- |

## Output

**Type**: `List[Dict]`

Returns a single row: login, balance (USD), total\_deposited, spent\_today, spent\_this\_month, daily\_spend\_limit, total\_spend\_limit, backlinks\_subscription\_expiry\_date, llm\_mentions\_subscription\_expiry\_date, timezone.

**Fields**: `login`, `balance`, `total_deposited`, `spent_today`, `spent_this_month`, `daily_spend_limit`, `total_spend_limit`, `backlinks_subscription_expiry_date`, `llm_mentions_subscription_expiry_date`, `timezone`

**Example**:

```json theme={"dark"}
[
  {
    "login": "you@example.com",
    "balance": 48.52,
    "total_deposited": 50.0,
    "spent_today": 0.31,
    "spent_this_month": 1.48,
    "daily_spend_limit": null
  }
]
```
