Digestive State & Timeline

GET /v1/digestion/state

Current digestive state in real time. No parameters needed.

{
  "object": "digestion.state",
  "state": "processing",
  "minutes_remaining": 47,
  "confidence": 0.82,
  "active_meals": 1,
  "since": "2026-03-17T12:30:00Z",
  "fasted_at": "2026-03-17T14:27:00Z"
}

States: fastedprocessingsettlingfasted

GET /v1/digestion/timeline

Historical per-meal digestion phases. Requires start_date and end_date.

{
  "object": "digestion.timeline",
  "meal_time": "2026-03-16T12:30:00Z",
  "meal_type": "lunch",
  "total_processing_min": 180,
  "phases": { "fed_end_min": 30, "processing_end_min": 120, "settling_end_min": 180 },
  "confidence": 0.82
}