Nutritionix · Schema

NaturalExerciseResponse

Response from the natural language exercise endpoint.

RestaurantHealthNutritionFoodFitnessPublic APIs

Properties

Name Type Description
exercises array One exercise object per detected activity.
View JSON Schema on GitHub

JSON Schema

track-natural-exercise-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/nutritionix/refs/heads/main/json-schema/track-natural-exercise-response-schema.json",
  "title": "NaturalExerciseResponse",
  "description": "Response from the natural language exercise endpoint.",
  "type": "object",
  "properties": {
    "exercises": {
      "type": "array",
      "description": "One exercise object per detected activity.",
      "items": {
        "$ref": "#/components/schemas/Exercise"
      }
    }
  }
}