# 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 %}
