Base Endpoint
https://dailyprice.finolfy.com/api/prices.php?token=YOUR_TOKEN
The API returns only stored Price Dashboard data. It cannot trigger source fetching.
Filters
qGeneral search
commodityCommodity name
stateState name
districtDistrict name
marketMandi/market name
dateYYYY-MM-DD
min_priceMinimum price
max_priceMaximum price
limit1 to 1000
JavaScript Example
fetch("https://dailyprice.finolfy.com/api/prices.php?token=YOUR_TOKEN&state=Gujarat&limit=20")
.then(response => response.json())
.then(json => {
if (!json.ok) throw new Error(json.error);
console.log(json.data);
});
PHP Example
$url = 'https://dailyprice.finolfy.com/api/prices.php?token=YOUR_TOKEN&commodity=Wheat';
$json = json_decode(file_get_contents($url), true);
foreach ($json['data'] ?? [] as $row) {
echo $row['commodity'] . ' - ' . $row['price'];
}
Example Response
{
"ok": true,
"count": 1,
"data": [{
"commodity": "Wheat",
"state": "Gujarat",
"district": "Ahmedabad",
"market": "Ahmedabad",
"price": 2450,
"unit": "Rs./Quintal",
"date": "2026-06-12",
"source_url": "https://agriplus.in/...",
"last_updated": "2026-06-12 09:00:00"
}]
}