# tokenPrice

This method returns the current $IDLE token price, in underlying (e.g. DAI) terms.

{% hint style="info" %}
Note: the **price does not include fees.** If you need the token price with fee you should take a look at the `tokenPriceWithFee` method.
{% endhint %}

### Function

```solidity
function tokenPrice(
) external view returns (uint256 price);
```

### Return values

| Value   | Description                       |
| ------- | --------------------------------- |
| `price` | Return the underlying token price |

{% hint style="info" %}
Note: $IDLE tokens for Risk-Adjusted strategy do not have a `tokenPriceWithFee` method so you need to take account of those on your side or use [this](https://etherscan.io/address/0x04Ce60ed10F6D2CfF3AA015fc7b950D13c113be5#code) helper.
{% endhint %}

[Here](https://twitter.com/emilianobonassi/status/1344419709597458432) you can find a Twitter thread with more info about Idle Token Helper and also a [follow up here](https://twitter.com/emilianobonassi/status/1344550511538802688).


---

# 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.idle.finance/developers/best-yield/methods/tokenprice.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.
