> For the complete documentation index, see [llms.txt](https://docs.notional.finance/v3-technical-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.notional.finance/v3-technical-docs/subgraph-guides/notional-v3-subgraphs/fetch-fcash-market-balances.md).

# Fetch fCash Market Balances

## Get fCash Market balances

This query can be used to fetch fCash market total balances and a fCash markets total debt outstanding: &#x20;

```
{
  fCashMarkets{
    snapshots(first: 1, orderBy: timestamp, orderDirection:desc){
    market{id}
    totalPrimeCash
    totalfCash
    totalPrimeCashInUnderlying
    totalfCashPresentValue
    totalfCashDebtOutstanding
    totalfCashDebtOutstandingPresentValue
    }
  }
}
```
