Input
Write food the way a real person would. Brands, sizes, modifiers, and custom changes are supported.
This service takes everyday food descriptions, normalizes them into a strict JSON format, runs each request through the model, and gives each account a free API key. The goal is simple: you send human input, the API returns structured output that is ready to consume.
Input
Write food the way a real person would. Brands, sizes, modifiers, and custom changes are supported.
Output
Every response is strict JSON with the same shape, so it is predictable for apps and shortcuts.
Account
Sign in with your phone, get a free API key, and track your remaining daily usage in the dashboard.
Example input
Route
POST /api/v1/parse
Body
{
"query": "2 grilled chicken tacos and a cold brew with oat milk"
}Demo JSON output
[
{
"barcode": null,
"beverage": null,
"brand": null,
"icon": "burritoSoftTacoChilis",
"llmPrompt": "grilled chicken tacos",
"name": "Grilled chicken tacos",
"nutrients": {
"alcohol": 0,
"carbs": 17,
"energy": 180,
"fat": 6,
"fiber": 2,
"protein": 14,
"water": 58
},
"serving": {
"amount": 2,
"label": "taco",
"weight": 86
},
"source": "llm"
},
{
"barcode": null,
"beverage": "beverage",
"brand": null,
"icon": "coffee",
"llmPrompt": "cold brew with oat milk",
"name": "Cold brew with oat milk",
"nutrients": {
"alcohol": 0,
"carbs": 4,
"energy": 30,
"fat": 1.5,
"fiber": 0,
"protein": 0.5,
"water": 338
},
"serving": {
"amount": 1,
"unit": "fluidOuncesUS"
},
"source": "llm"
}
]