UFlow Cloud
EATLY

Meals, stats, goal

Daily diary, soft-delete, daily_stats and the active goal.

GET/v1/eatly/meals?date=YYYY-MM-DD
Meals + items for a local date. Defaults to today in Asia/Tashkent.
GET
curl "https://cloud.uflow.uz/v1/eatly/meals?date=2026-08-22" \
  -H "Authorization: Bearer uf_live_…"
POST/v1/eatly/meals
Log a meal by hand (does not spend scan quota). meal_type: breakfast | lunch | dinner | snack.
POST
{
  "meal_type": "breakfast",
  "source": "manual",
  "foods": [
    { "foodItem": "2 eggs", "calories": 180, "protein": 12, "carbs": 1, "fat": 14 }
  ]
}
DELETE/v1/eatly/meals/:id
Soft-delete β€” sets is_deleted=true, same as the app.

Stats & goal

GET/v1/eatly/stats?date=YYYY-MM-DD
Daily totals: calories, macros, meal count, scans, goal.
GET/v1/eatly/goal
Active goal (weight_loss / maintenance / muscle_gain) and plan (free | premium).