{"id":18952055,"url":"https://github.com/ishinzoo/nutritionchecker","last_synced_at":"2025-07-04T10:04:46.724Z","repository":{"id":236683841,"uuid":"779521136","full_name":"iShinzoo/NutritionChecker","owner":"iShinzoo","description":"This app Uses Concept Of Retrofit. It work is to give the Nutrition Description of the food item You searched for . ","archived":false,"fork":false,"pushed_at":"2025-03-11T09:11:53.000Z","size":3249,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-02T00:55:56.977Z","etag":null,"topics":["api","jepackcompose","kotlin","retrofit"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iShinzoo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-03-30T03:29:22.000Z","updated_at":"2025-04-09T23:54:56.000Z","dependencies_parsed_at":"2024-05-01T17:27:53.003Z","dependency_job_id":"c2199210-0e18-4ca9-86d1-c724d51519ba","html_url":"https://github.com/iShinzoo/NutritionChecker","commit_stats":null,"previous_names":["ishinzoo/nutritionchecker"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/iShinzoo/NutritionChecker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iShinzoo%2FNutritionChecker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iShinzoo%2FNutritionChecker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iShinzoo%2FNutritionChecker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iShinzoo%2FNutritionChecker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iShinzoo","download_url":"https://codeload.github.com/iShinzoo/NutritionChecker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iShinzoo%2FNutritionChecker/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263489674,"owners_count":23474526,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","jepackcompose","kotlin","retrofit"],"created_at":"2024-11-08T13:30:44.929Z","updated_at":"2025-07-04T10:04:46.704Z","avatar_url":"https://github.com/iShinzoo.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NutritionChecker\n\nNutritionChecker is a Fitness Tracking app designed to provide instant access to comprehensive nutrition information for any food item. Whether you're tracking your macros, managing dietary requirements, or simply curious about what's on your plate, NutritionChecker has got you covered!\n\n## Features\n🍏 Instant access to nutrition information for any food item\n🥑 Accurate data sourced from trusted APIs\n📊 Detailed breakdown of macronutrients and micronutrients\n🎨 Minimalist UI design for intuitive navigation\n💡 Personalized recommendations for healthier choices\n\n## Demo Video\n![enter image description here](https://github.com/iShinzoo/NutritionChecker/blob/master/assets/video_20240403_105617_edit%20(1).gif)\n\n\n## Build With\n\n[Kotlin](https://kotlinlang.org/):\nAs the programming language.\n\n[Jetpack Compose](https://developer.android.com/jetpack/compose) :\nTo build UI.\n\n[Jetpack Navigation](https://developer.android.com/jetpack/compose/navigation) :\nFor navigation between screens and deep linking.\n\n[Calorie Ninjas API](https://calorieninjas.com/api) :\nTo track user's Nutrition activity such as carbs, protiens and other macro and micro nutrients.\n\n## Installation\n\n```\nSimple clone this app and open in Android Studio.\n```\n\n\n\n### Calorie Ninjas Integration\n\nDo these steps if you want to show CalorieNinjas.\n\nOverview\nThe Calorie Ninjas API provides detailed nutrition information for food and drink items based on user input. Users can query the API with a string containing one or more food or drink items, optionally specifying quantities. The API returns nutrition information for each item in the query.\n\nEndpoint\nThe base URL for the Calorie Ninjas API is:\n```\nhttps://api.calorieninjas.com/v1/nutrition\n```\n\nAuthentication\nTo access the API, you need to include an 'X-Api-Key' header with your request. You will receive an API key upon signing up for an account.\n\nQuery Parameters\nquery (required): A string containing food or drink items. You can optionally specify quantities before each item. If no quantity is specified, the default quantity is 100 grams. Queries cannot exceed 1500 characters.\nSample Request\n\n```\nGET /v1/nutrition?query=10oz onion and a tomato\nHost: api.calorieninjas.com\nX-Api-Key: YOUR_API_KEY\n```\nSample Response\n\n```\n{\n  \"items\": [\n    {\n      \"sugar_g\": 13.3,\n      \"fiber_g\": 4,\n      \"serving_size_g\": 283.495,\n      \"sodium_mg\": 8,\n      \"name\": \"onion\",\n      \"potassium_mg\": 99,\n      \"fat_saturated_g\": 0.1,\n      \"fat_total_g\": 0.5,\n      \"calories\": 126.7,\n      \"cholesterol_mg\": 0,\n      \"protein_g\": 3.9,\n      \"carbohydrates_total_g\": 28.6\n    },\n    {\n      \"sugar_g\": 2.6,\n      \"fiber_g\": 1.2,\n      \"serving_size_g\": 100,\n      \"sodium_mg\": 4,\n      \"name\": \"tomato\",\n      \"potassium_mg\": 23,\n      \"fat_saturated_g\": 0,\n      \"fat_total_g\": 0.2,\n      \"calories\": 18.2,\n      \"cholesterol_mg\": 0,\n      \"protein_g\": 0.9,\n      \"carbohydrates_total_g\": 3.9\n    }\n  ]\n}\n```\n\nYou can make API calls using Kotlin.\n\nReplace 'YOUR_API_KEY' with your actual API key obtained from Calorie Ninjas.\n\n\n## Project Status\n\nThese features are left to be implemented:\n\n1. imagetextnutrition.\n2. Recipe.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fishinzoo%2Fnutritionchecker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fishinzoo%2Fnutritionchecker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fishinzoo%2Fnutritionchecker/lists"}