> 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-current-fcash-and-prime-cash-rates.md).

# Fetch current fCash and Prime Cash Rates

## Get current Prime Cash lending rates

This query can be used to get current Prime Cash variable lending rates:

```
{
  oracles(where:{oracleType: "PrimeCashSpotInterestRate"}){
    base{symbol}
    latestRate
  }
}
```

## Get current Prime Cash borrowing rates

This query can be used to get current Prime Cash variable borrowing rates:

```
{
  oracles(where:{oracleType: "PrimeDebtSpotInterestRate"}){
    base{symbol}
    latestRate
  }
}
```

## Get current fCash rates

This query can be used to get current fCash fixed last implied rates:

```
{
  oracles(where:{oracleType: "fCashSpotRate"}){
    base{
      symbol
    }
    quote{
      symbol
      maturity
    }
    latestRate
  }
}
```
