Fetches the complete nutrient profile for a food identified by its database ID. Returns all nutrients with amounts per 100 grams, including calories, protein, fat, carbohydrates, fiber, sugars, vitamins, and minerals. Branded items also include a per-serving label panel and ingredient list.
You have identified a food and need its complete calories, macros, vitamins, and minerals.
Searching for a food by name (do that first to get its identifier) or a packaged product by barcode.
0.1 credits / lookup
Set these inside the intent when you run it.
The food database identifier from a prior find-a-food search result.
The full nutrient profile for the food (per 100 g), including energy, macros, vitamins, and minerals, with the serving basis clearly stated.
Run this sub-skill directly: pin it with operation and pass its inputs in the intent. (Omit operation and the Nutrition skill will route from your intent instead.)
curl -X POST "https://skill.askfaro.com/skills/nutrition/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"operation":"food_facts","fdcId":747448}}'Example requests