# Get Cash

Cash is the amount of underlying balance owned by this aToken contract. One may query the total amount of cash currently available to this market.

**SErc20 / SEther**

```
function getCash() returns (uint)
```

* `RETURN`: The quantity of underlying asset owned by the contract.

**Solidity**

```
SErc20 aToken = SToken(0x3FDA...);
uint cash = aToken.getCash();
```

**Web3 1.0**

```javascript
const aToken = SEther.at(0x3FDB...);
const cash = (await aToken.methods.getCash().call());
```


---

# 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.agilefi.org/atokens/get-cash.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.
