Nutritionix · Schema

FoodsResponse

A response that wraps one or more fully detailed food objects.

RestaurantHealthNutritionFoodFitnessPublic APIs

Properties

Name Type Description
foods array
View JSON Schema on GitHub

JSON Schema

track-foods-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-foods-response-schema.json",
  "title": "FoodsResponse",
  "description": "A response that wraps one or more fully detailed food objects.",
  "type": "object",
  "properties": {
    "foods": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Food"
      }
    }
  }
}