Book a Demo

Help your customers get the results they signed up for by creating healthy eating habits.

75% of weight-loss results come from a healthy diet.
-Shawn M. Talbott, PhD

Dietary consistency increases the likelihood of maintaining muscle mass by up to 70%
-Journal of the American Dietetic Association

Leucine-rich protein increases muscle synthesis by 50% post-exercise
-International Journal of Sport Nutrition and Exercise Metabolism

Generate simple, easy to follow meals, without all the mess.

Try it out! What are you in the mood for?

Choose a diet

Choose a meal

Choose ingredients

RESPONSE

Carbs

Fats

Proteins

Nutrition is the perfect pair to getting your fiteness customers accelerated results.

Add to your tech-stack in minutes

You have full control of the data that gets delivered to you using our fully managed api.



POST

  • import requests

  • def create_meal_plan():
    • response = requests.post('https://api.habit.kitchen/v1/create-plan',
      • headers={
        • 'X-Api-Key': API_KEY
      • }
    • )
    • return response.json()
  • curl -X POST "https://api.habit.kitchen/v1/create-plan" \
    • -H "X-Api-Key: API_KEY" \
    • -H "accept: application/json"
  • fetch('https://api.habit.kitchen/v1/create-plan', {
    • method: 'POST',
    • headers: {
      • 'X-Api-Key': API_KEY,
      • 'Accept': 'application/json'
    • }
  • })
  • .then(response => response.json())