> For the complete documentation index, see [llms.txt](https://docs.kojascripts.eu/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kojascripts.eu/koja-lib/api-reference/client-api/money.md).

# Money

Retrieve the local player's money balance from the client side via a server callback.

## GetMoney

Fetches the player's cash and bank balance asynchronously.

```lua
KOJA.Client.GetMoney(callback)
```

| Parameter  | Type                   | Description            |
| ---------- | ---------------------- | ---------------------- |
| `callback` | `function(cash, bank)` | Called with the result |

**Callback parameters**

| Parameter | Type     | Description  |
| --------- | -------- | ------------ |
| `cash`    | `number` | Cash on hand |
| `bank`    | `number` | Bank balance |

**Example**

```lua
KOJA.Client.GetMoney(function(cash, bank)
    print('Cash:', cash)
    print('Bank:', bank)
end)
```

**Example — show in UI**

```lua
KOJA.Client.GetMoney(function(cash, bank)
    SendNUIMessage({
        action = 'updateMoney',
        cash   = cash,
        bank   = bank,
    })
end)
```

{% hint style="info" %}

* This function triggers a server callback internally. The result is never available on the same tick — always use the callback.
* To add or remove money from a player, use the [server-side money API](file:///9510884/server/money.md).
  {% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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.kojascripts.eu/koja-lib/api-reference/client-api/money.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.
