/v1/meta
Service description & endpoints
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/fruit-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fruit-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fruit-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/fruit-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"service": "fruit-api",
"endpoints": {
"GET /v1/all": "Every fruit with nutrition.",
"GET /v1/meta": "This document.",
"GET /v1/fruit": "A single fruit by name (name=, e.g. banana).",
"GET /v1/genus": "Fruits in a genus (genus=, e.g. Prunus).",
"GET /v1/order": "Fruits in an order (order=, e.g. Rosales).",
"GET /v1/family": "Fruits in a botanical family (family=, e.g. Rosaceae).",
"GET /v1/filter": "Filter by a nutrient range (nutrient=sugar, min=, max=)."
},
"nutrients": [
"calories",
"sugar",
"carbohydrates",
"protein",
"fat"
],
"description": "Fruit nutrition & taxonomy via Fruityvice: every fruit with its botanical family, genus and order plus per-100g nutrition (calories, sugar, carbohydrates, protein, fat). Look up a fruit by name, list a whole family/genus/order, or filter the catalogue by a nutrient range. Real data, no key."
},
"meta": {
"timestamp": "2026-06-08T01:19:02.372Z",
"request_id": "1c964017-2ccd-4c83-aea0-c375dcd79ad0"
},
"status": "ok",
"message": "Meta",
"success": true
}