Fruityvice
Nutrition and taxonomy facts for common fruits
Fruityvice answers questions about fruit—family, genus, order and per-serving nutrition like calories, sugar and protein. Query a single fruit by name or pull the whole list. Keyless JSON, no signup.
GET https://www.fruityvice.com/api/fruit/banana
{
"name": "Banana",
"id": 1,
"family": "Musaceae",
"genus": "Musa",
"nutritions": {
"calories": 96,
"sugar": 17.2,
"protein": 1
}
}curl "https://www.fruityvice.com/api/fruit/banana"const res = await fetch("https://www.fruityvice.com/api/fruit/banana");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://www.fruityvice.com/api/fruit/banana")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/fruit/bananaPROBEDNutrition and taxonomy facts for common fruits
/fruitFruit — documented GET route.
/fruit/1Fruit details by ID (example: 1).
/fruit?limit=10Fruit — documented GET route.
/fruit/search?q=testSearch by query parameters.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Fruityvice: common questions
Is Fruityvice free to use?
Yes — Fruityvice is a free health & food API. Free tier: Free — no API key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Fruityvice need an API key?
No — Fruityvice needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Fruityvice from the browser?
Not directly — Fruityvice doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is Fruityvice up right now?
As of our last scheduled check, Fruityvice is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.