# Monitoring a Farm's Status

## Getting Farm Stats

Farm stats contain all farm deposit dates and amounts

{% hint style="info" %}
Use previous GET farms list API to fetch the farm Id
{% endhint %}

## Getting Token's Price

An API call to get the price feed for the token of a specific farm

## Get the price of the reward token in a specific farm

<mark style="color:blue;">`GET`</mark> `https://api.tokensfarm.com/farm/price`

#### Path Parameters

| Name | Type    | Description                                                           |
| ---- | ------- | --------------------------------------------------------------------- |
|      | integer | <p>The farm Id will can be found by using <br>"Get farm list" API</p> |

{% tabs %}
{% tab title="200: OK Price info successfully fetched" %}

```javascript
{
  "price": 0.487912
}
```

{% endtab %}
{% endtabs %}


---

# 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.tokensfarm.com/for-developers/integrate-tokensfarm/monitoring-a-farms-status.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.
