
MacroTrackAI Test on the GPT Store
By edwin thomas webbShow 1+ GPTs by edwin thomas webb
Introduction to MacroTrackAI Test
By simply inputting the details of the dish they are preparing, users can access a wealth of data on the caloric and nutritional content of their meals, empowering them to make informed decisions about their dietary choices.
GPT Description
Looks up calorific and nutritional data from the USDA FDC
GPT Prompt Starters
- What are you making today?
- Supply my UID
GPT Action OpenAPI Spec
{ "openapi": "3.0.0", "info": { "title": "MacroTrackAI Food and Meal API", "version": "1.0.0", "description": "API for searching food items, logging meals, and retrieving meals." }, "servers": [ { "url": "https://www.macrotrack.ai/api" } ], "paths": { "/food": { "get": { "operationId": "getFoodMacros", "summary": "Retrieve an array of food items and their nutritional information per 100g.", "description": "Perform a search based on the provided query and return an array of matching food items, each with nutritional information standardized for 100g of the food.", "parameters": [ { "name": "query", "in": "query", "required": true, "description": "food to search for.", "schema": { "type": "string" } } ], "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "object", "properties": { "description": { "type": "string" }, "fdc_id": { "type": "integer" }, "gram_weight": { "type": "number" }, "calories": { "$ref": "#/components/schemas/Calories" }, "macros": { "$ref": "#/components/schemas/Macros" }, "nutrients": { "$ref": "#/components/schemas/Nutrients" }, "conversion_unit": { "$ref": "#/components/schemas/ConversionUnit" } } } } } } }, "400": { "description": "Invalid request" }, "404": { "description": "Food item not found" } } } }, "/meal": { "post": { "summary": "Create a new meal", "operationId": "createMeal", "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/MealInput" } } } }, "responses": { "201": { "description": "Meal created successfully" }, "400": { "description": "Malformed request" }, "500": { "description": "Server error" } } } } }, "components": { "schemas": { "MealInput": { "type": "object", "properties": { "user_uid": { "type": "string" }, "description": { "type": "string" }, "total_calories": { "type": "number" }, "total_fat": { "type": "number" }, "total_carbs": { "type": "number" }, "total_protein": { "type": "number" } } }, "Food": { "type": "object", "properties": { "description": { "type": "string", "description": "Description of the food." }, "fdc_id": { "type": "integer", "description": "Food Data Central ID of the food." }, "gram_weight": { "type": "number", "description": "Gram weight of the food." } } }, "Calories": { "type": "object", "properties": { "name": { "type": "string" }, "amount": { "type": "number" }, "unit_name": { "type": "string" } } }, "Macros": { "type": "object", "properties": { "fat": { "$ref": "#/components/schemas/Nutrient" }, "protein": { "$ref": "#/components/schemas/Nutrient" }, "carbohydrates": { "$ref": "#/components/schemas/Nutrient" } } }, "Nutrients": { "type": "object", "properties": { "total_fiber": { "$ref": "#/components/schemas/Nutrient" }, "soluble_fiber": { "$ref": "#/components/schemas/Nutrient" }, "sodium": { "$ref": "#/components/schemas/Nutrient" } } }, "Nutrient": { "type": "object", "properties": { "name": { "type": "string" }, "amount": { "type": "number" }, "unit_name": { "type": "string" } } }, "ConversionUnit": { "type": "object", "properties": { "name": { "type": "string" }, "gram_weight": { "type": "string" } } } } } }
MacroTrackAI Test GPT FAQs
Currently, access to this GPT requires a ChatGPT Plus subscription.
Visit the largest GPT directory GPTsHunter.com, search to find the current GPT: "MacroTrackAI Test", click the button on the GPT detail page to navigate to the GPT Store. Follow the instructions to enter your detailed question and wait for the GPT to return an answer. Enjoy!
We are currently calculating its ranking on the GPT Store. Please check back later for updates.