{"id":328,"date":"2026-08-22T09:40:11","date_gmt":"2026-08-22T09:40:11","guid":{"rendered":"https:\/\/nutrigraphapi.com\/blog\/clean-label-food-api\/"},"modified":"2026-09-10T09:47:27","modified_gmt":"2026-09-10T09:47:27","slug":"clean-label-food-api","status":"publish","type":"post","link":"https:\/\/nutrigraphapi.com\/blog\/clean-label-food-api\/","title":{"rendered":"The Clean-Label Food API Blueprint: Auditing 30+ Additives, Dyes, and Ultra-Processed Ingredients"},"content":{"rendered":"<h2>1. The Rise of the Clean-Label Consumer: An Urgent Health-Tech Opportunity<\/h2>\n<p>Over the past five years, consumer grocery shopping behavior has undergone a profound transformation. What once was a niche interest among health enthusiasts has become a mainstream consumer movement: the demand for clean, unadulterated, whole-food nutrition. Shoppers actively scrutinize ingredient panels for petroleum-derived dyes, chemical preservatives, high fructose corn syrup, artificial sweeteners, and ultra-processed formulation agents.<\/p>\n<p>In response, consumer apps focused on &quot;eating clean&quot;, ingredient transparency, and additive avoidance are seeing unprecedented organic growth and app store downloads. However, for engineering teams tasked with building these applications, translating messy, inconsistent, and deceptive manufacturer ingredient lists into structured, reliable clean-label data is a massive technical challenge.<\/p>\n<p>Building an internal parsing engine requires constantly updating chemical dictionaries, maintaining multi-jurisdictional regulatory compliance databases (e.g., tracking additives banned in Europe but legal in the US), and handling OCR typos. As documented on <a href=\"https:\/\/www.nutrigraphapi.com\/\">www.nutrigraphapi.com<\/a>, NutriGraphAPI solves this by providing over 30 pre-computed stated and qualified clean-label fields on every barcode lookup.<\/p>\n<h2>2. The Four Pillars of Modern Clean-Label Intelligence<\/h2>\n<p>A production-ready clean-label database must go far beyond simply counting how many ingredients are in a box. It must systematically categorize ingredients across four distinct analytical pillars:<\/p>\n<h3>A. Petroleum Dyes vs. Botanical Pigments<\/h3>\n<p>Synthetic food dyes (such as Red 40, Yellow 5, Yellow 6, and Blue 1) are derived from petroleum distillates and require mandatory warning labels in the European Union regarding hyperactivity in children. In contrast, natural colorants derived from beet juice concentrate, turmeric, spirulina, and paprika oleoresin are completely clean. The clean-label engine in NutriGraphAPI automatically separates artificial dyes (<code>artificialColorsQualified: &quot;No&quot;<\/code>) from botanical concentrates (<code>naturalColorsQualified: &quot;Yes&quot;<\/code>).<\/p>\n<h3>B. Chemical Preservatives and Industrial Antioxidants<\/h3>\n<p>Synthetic preservatives such as Butylated Hydroxyanisole (<strong>BHA<\/strong>), Butylated Hydroxytoluene (<strong>BHT<\/strong>), Tertiary Butylhydroquinone (<strong>TBHQ<\/strong>), Sodium Benzoate, and Potassium Sorbate are engineered to extend shelf life for years at the expense of gut microbiome health. NutriGraphAPI audits every token in the ingredient hierarchy to flag synthetic preservatives while recognizing natural preservation methods (such as rosemary extract, citric acid, and tocopherols).<\/p>\n<h3>C. Industrial Sweeteners &amp; Corn Syrups<\/h3>\n<p>From High Fructose Corn Syrup (HFCS) and crystalline fructose to intense artificial sweeteners (Sucralose, Aspartame, Acesulfame Potassium, Saccharin) and sugar alcohols (Sorbitol, Maltitol, Erythritol), NutriGraphAPI categorizes sweetener provenance so consumer apps can flag metabolic disrupters instantly.<\/p>\n<h3>D. Whole-Food Recognizability &amp; Simplicity Ratings<\/h3>\n<p>Consumers love simplicity. NutriGraphAPI calculates an algorithmic ingredient simplicity rating (<code>countOfIngredientsQualified: &quot;Low (1 main ingredient)&quot;<\/code>) and verifies whether all ingredients consist of recognizable whole foods (<code>recognizableIngredientsQualified: &quot;Yes&quot;<\/code>), allowing apps to award &quot;Clean Kitchen Badges&quot; on scan.<\/p>\n<h2>3. The SaaS Monetization Blueprint: How Clean-Label Apps Monetize<\/h2>\n<p>Leading digital health applications use clean-label intelligence to build high-margin recurring subscription revenue streams:<\/p>\n<ul>\n<li><strong>&quot;Toxic Additive Radar&quot; Premium Upgrade ($4.99 &#8211; $9.99\/mo):<\/strong> Users unlock camera-based scanning that highlights dangerous dyes, endocrine disruptors, and synthetic preservatives with custom threshold alerts.<\/li>\n<li><strong>Clean Brand Replacement Recommendations:<\/strong> When a user scans a popular ultra-processed snack, the app immediately displays cleaner, whole-food alternatives available at their local supermarket, generating affiliate revenue and CPG partnership fees.<\/li>\n<li><strong>CPG Portfolio Benchmarking (B2B API):<\/strong> Food manufacturers and private-label retailers license clean-label data to audit competitor products across 5M+ UPCs and reformulate cleaner recipes.<\/li>\n<\/ul>\n<h2>4. Technical Implementation: Clean-Label Schema in Action<\/h2>\n<p>NutriGraphAPI delivers clean-label intelligence with dual <strong>stated<\/strong> (on-pack declaration) and <strong>qualified<\/strong> (AI-verified) pairs. Here is the compact payload structure:<\/p>\n<pre><code class=\"language-json\">{\n  \"cleanLabel\": {\n    \"artificialColorsStated\": \"No\",\n    \"artificialColorsQualified\": \"No\",\n    \"artificialFlavorsStated\": \"No\",\n    \"artificialFlavorsQualified\": \"No\",\n    \"artificialSweetenersStated\": \"No\",\n    \"artificialSweetenersQualified\": \"No\",\n    \"preservativesStated\": \"No\",\n    \"preservativesQualified\": \"No\",\n    \"gmoPresenceStated\": \"Non-GMO Project Verified\",\n    \"gmoPresenceQualified\": \"Non-GMO\",\n    \"highFructoseCornSyrupStated\": \"No\",\n    \"highFructoseCornSyrupQualified\": \"No\",\n    \"naturalColorsStated\": \"Yes (no artificial colors)\",\n    \"naturalColorsQualified\": \"Yes\",\n    \"countOfIngredientsQualified\": \"Low (1 main ingredient)\",\n    \"recognizableIngredientsQualified\": \"Yes\",\n    \"madeInUsaStated\": \"Yes\",\n    \"sugarAlcoholsQualified\": \"No\"\n  }\n}<\/code><\/pre>\n<p><em>Inspect the full 200+ attribute payload in the <a href=\"https:\/\/www.nutrigraphapi.com\/#schema\">NutriGraphAPI Interactive Schema Explorer<\/a>.<\/em><\/p>\n<h2>5. End-to-End Camera Scanner Integration (React Native \/ Swift)<\/h2>\n<p>Here is how a production React Native or iOS application implements a real-time clean-label scanner with NutriGraphAPI:<\/p>\n<pre><code class=\"language-typescript\">\/\/ TypeScript: Clean-Label Scanner Hook\nimport { useState } from 'react';\n\ninterface CleanLabelVerdict {\n  isClean: boolean;\n  warnings: string[];\n  simplicity: string;\n}\n\nexport function useCleanLabelScanner() {\n  const [loading, setLoading] = useState(false);\n\n  const scanBarcode = async (barcode: string): Promise =&gt; {\n    setLoading(true);\n    try {\n      const res = await fetch(`https:\/\/barcode-api-140543331861.asia-south1.run.app\/api\/lookup?barcode=${barcode}`, {\n        headers: { 'X-API-Key': process.env.EXPO_PUBLIC_NUTRIGRAPH_KEY! }\n      });\n      const data = await res.json();\n      const clean = data.analysed_data.cleanLabel;\n      \n      const warnings: string[] = [];\n      if (clean.artificialColorsQualified === 'Yes') warnings.push('Contains Synthetic Dyes');\n      if (clean.preservativesQualified === 'Yes') warnings.push('Contains Chemical Preservatives');\n      if (clean.highFructoseCornSyrupQualified === 'Yes') warnings.push('Contains HFCS');\n      if (clean.artificialSweetenersQualified === 'Yes') warnings.push('Contains Artificial Sweeteners');\n      \n      return {\n        isClean: warnings.length === 0,\n        warnings,\n        simplicity: clean.countOfIngredientsQualified || 'Standard'\n      };\n    } finally {\n      setLoading(false);\n    }\n  };\n\n  return { scanBarcode, loading };\n}<\/code><\/pre>\n<h2>6. Quantitative Comparison: Clean-Label Food Data Capabilities<\/h2>\n<table>\n<thead>\n<tr>\n<th>Capability<\/th>\n<th>NutriGraphAPI<\/th>\n<th>Crowdsourced (<a href=\"https:\/\/world.openfoodfacts.org\/\" target=\"_blank\" rel=\"noopener\">Open Food Facts<\/a>)<\/th>\n<th>Legacy Enterprise Food APIs<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><strong>30+ Clean-Label Dimensions<\/strong><\/td>\n<td><strong>Yes (Pre-computed stated &amp; qualified pairs)<\/strong><\/td>\n<td>No (Unstructured community notes)<\/td>\n<td>No<\/td>\n<\/tr>\n<tr>\n<td><strong>Ingredient Simplicity Classification<\/strong><\/td>\n<td><strong>countOfIngredients &amp; recognizableIngredients<\/strong><\/td>\n<td>Not supported<\/td>\n<td>Not supported<\/td>\n<\/tr>\n<tr>\n<td><strong>Multi-Jurisdictional Banned Additive Alerts<\/strong><\/td>\n<td><strong>Automated EU vs US regulatory screening<\/strong><\/td>\n<td>Community-dependent<\/td>\n<td>Not supported<\/td>\n<\/tr>\n<tr>\n<td><strong>Median Response Time<\/strong><\/td>\n<td><strong>Sub-150ms at global edge<\/strong><\/td>\n<td>1,200ms &#8211; 2,800ms<\/td>\n<td>500ms &#8211; 1,000ms<\/td>\n<\/tr>\n<tr>\n<td><strong>Free Tier Access<\/strong><\/td>\n<td><strong>1,000 calls\/mo (Complete full payload)<\/strong><\/td>\n<td>Crowdsourced data<\/td>\n<td>Sales demo required ($1,800+\/mo)<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>7. Frequently Asked Developer Questions (FAQ)<\/h2>\n<h3>How does NutriGraphAPI distinguish between artificial and natural food colorings?<\/h3>\n<p>NutriGraphAPI cross-references parsed ingredient tokens against botanical registries (e.g. Beta-Carotene, Beet Powder, Turmeric, Spirulina Extract) versus petroleum-derived synthetic color standards (e.g. FD&amp;C Red No. 40, Yellow No. 5, Blue No. 1, Titanium Dioxide E171).<\/p>\n<h3>Can we use NutriGraphAPI data for commercial B2B nutrition apps?<\/h3>\n<p>Yes. Unlike copyleft databases (such as ODbL), NutriGraphAPI is a commercial REST API that places zero viral share-alike licensing restrictions on your proprietary software or database enhancements.<\/p>\n<h2>8. Developer Sandbox &amp; Getting Started<\/h2>\n<p>Claim your free API key at <a href=\"https:\/\/www.nutrigraphapi.com\/\">www.nutrigraphapi.com<\/a> and start auditing clean-label packaged foods with <strong>1,000 free monthly lookups<\/strong> on our Developer tier.<\/p>\n<p><a href=\"https:\/\/www.nutrigraphapi.com\/\" class=\"btn-cta\">Claim Free Developer API Key &rarr;<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>A technical guide to building clean-eating and additive scanning apps: auditing synthetic dyes, preservatives, HFCS, and whole-food simplicity on www.nutrigraphapi.com.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-328","post","type-post","status-publish","format-standard","hentry","category-blog"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>The Clean-Label Food API Blueprint<\/title>\n<meta name=\"description\" content=\"A technical guide to building clean-eating and additive scanning apps: auditing synthetic dyes, preservatives, HFCS, and whole-food simplicity on\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/nutrigraphapi.com\/blog\/clean-label-food-api\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The Clean-Label Food API Blueprint\" \/>\n<meta property=\"og:description\" content=\"A technical guide to building clean-eating and additive scanning apps: auditing synthetic dyes, preservatives, HFCS, and whole-food simplicity on\" \/>\n<meta property=\"og:url\" content=\"https:\/\/nutrigraphapi.com\/blog\/clean-label-food-api\/\" \/>\n<meta property=\"og:site_name\" content=\"NutriGraphAPI Notes\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-22T09:40:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-09-10T09:47:27+00:00\" \/>\n<meta name=\"author\" content=\"foodscangenius\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"foodscangenius\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/nutrigraphapi.com\\\/blog\\\/clean-label-food-api\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/nutrigraphapi.com\\\/blog\\\/clean-label-food-api\\\/\"},\"author\":{\"name\":\"foodscangenius\",\"@id\":\"https:\\\/\\\/nutrigraphapi.com\\\/blog\\\/#\\\/schema\\\/person\\\/525aba7b1cccc56c405bf42e4aad4910\"},\"headline\":\"The Clean-Label Food API Blueprint: Auditing 30+ Additives, Dyes, and Ultra-Processed Ingredients\",\"datePublished\":\"2026-08-22T09:40:11+00:00\",\"dateModified\":\"2026-09-10T09:47:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/nutrigraphapi.com\\\/blog\\\/clean-label-food-api\\\/\"},\"wordCount\":784,\"commentCount\":2,\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/nutrigraphapi.com\\\/blog\\\/clean-label-food-api\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/nutrigraphapi.com\\\/blog\\\/clean-label-food-api\\\/\",\"url\":\"https:\\\/\\\/nutrigraphapi.com\\\/blog\\\/clean-label-food-api\\\/\",\"name\":\"The Clean-Label Food API Blueprint\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/nutrigraphapi.com\\\/blog\\\/#website\"},\"datePublished\":\"2026-08-22T09:40:11+00:00\",\"dateModified\":\"2026-09-10T09:47:27+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/nutrigraphapi.com\\\/blog\\\/#\\\/schema\\\/person\\\/525aba7b1cccc56c405bf42e4aad4910\"},\"description\":\"A technical guide to building clean-eating and additive scanning apps: auditing synthetic dyes, preservatives, HFCS, and whole-food simplicity on\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/nutrigraphapi.com\\\/blog\\\/clean-label-food-api\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/nutrigraphapi.com\\\/blog\\\/clean-label-food-api\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/nutrigraphapi.com\\\/blog\\\/clean-label-food-api\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/nutrigraphapi.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"The Clean-Label Food API Blueprint: Auditing 30+ Additives, Dyes, and Ultra-Processed Ingredients\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/nutrigraphapi.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/nutrigraphapi.com\\\/blog\\\/\",\"name\":\"NutriGraphAPI Notes\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/nutrigraphapi.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/nutrigraphapi.com\\\/blog\\\/#\\\/schema\\\/person\\\/525aba7b1cccc56c405bf42e4aad4910\",\"name\":\"foodscangenius\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8a4c5c6081369c97ceb5c135ba5d99504b7ad28ef4672712b5a3a3388802144a?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8a4c5c6081369c97ceb5c135ba5d99504b7ad28ef4672712b5a3a3388802144a?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8a4c5c6081369c97ceb5c135ba5d99504b7ad28ef4672712b5a3a3388802144a?s=96&r=g\",\"caption\":\"foodscangenius\"},\"sameAs\":[\"https:\\\/\\\/nutrigraphapi.com\\\/blog\"],\"url\":\"https:\\\/\\\/nutrigraphapi.com\\\/blog\\\/author\\\/foodscangenius\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"The Clean-Label Food API Blueprint","description":"A technical guide to building clean-eating and additive scanning apps: auditing synthetic dyes, preservatives, HFCS, and whole-food simplicity on","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/nutrigraphapi.com\/blog\/clean-label-food-api\/","og_locale":"en_US","og_type":"article","og_title":"The Clean-Label Food API Blueprint","og_description":"A technical guide to building clean-eating and additive scanning apps: auditing synthetic dyes, preservatives, HFCS, and whole-food simplicity on","og_url":"https:\/\/nutrigraphapi.com\/blog\/clean-label-food-api\/","og_site_name":"NutriGraphAPI Notes","article_published_time":"2026-08-22T09:40:11+00:00","article_modified_time":"2026-09-10T09:47:27+00:00","author":"foodscangenius","twitter_card":"summary_large_image","twitter_misc":{"Written by":"foodscangenius","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/nutrigraphapi.com\/blog\/clean-label-food-api\/#article","isPartOf":{"@id":"https:\/\/nutrigraphapi.com\/blog\/clean-label-food-api\/"},"author":{"name":"foodscangenius","@id":"https:\/\/nutrigraphapi.com\/blog\/#\/schema\/person\/525aba7b1cccc56c405bf42e4aad4910"},"headline":"The Clean-Label Food API Blueprint: Auditing 30+ Additives, Dyes, and Ultra-Processed Ingredients","datePublished":"2026-08-22T09:40:11+00:00","dateModified":"2026-09-10T09:47:27+00:00","mainEntityOfPage":{"@id":"https:\/\/nutrigraphapi.com\/blog\/clean-label-food-api\/"},"wordCount":784,"commentCount":2,"articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/nutrigraphapi.com\/blog\/clean-label-food-api\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/nutrigraphapi.com\/blog\/clean-label-food-api\/","url":"https:\/\/nutrigraphapi.com\/blog\/clean-label-food-api\/","name":"The Clean-Label Food API Blueprint","isPartOf":{"@id":"https:\/\/nutrigraphapi.com\/blog\/#website"},"datePublished":"2026-08-22T09:40:11+00:00","dateModified":"2026-09-10T09:47:27+00:00","author":{"@id":"https:\/\/nutrigraphapi.com\/blog\/#\/schema\/person\/525aba7b1cccc56c405bf42e4aad4910"},"description":"A technical guide to building clean-eating and additive scanning apps: auditing synthetic dyes, preservatives, HFCS, and whole-food simplicity on","breadcrumb":{"@id":"https:\/\/nutrigraphapi.com\/blog\/clean-label-food-api\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/nutrigraphapi.com\/blog\/clean-label-food-api\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/nutrigraphapi.com\/blog\/clean-label-food-api\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/nutrigraphapi.com\/blog\/"},{"@type":"ListItem","position":2,"name":"The Clean-Label Food API Blueprint: Auditing 30+ Additives, Dyes, and Ultra-Processed Ingredients"}]},{"@type":"WebSite","@id":"https:\/\/nutrigraphapi.com\/blog\/#website","url":"https:\/\/nutrigraphapi.com\/blog\/","name":"NutriGraphAPI Notes","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/nutrigraphapi.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/nutrigraphapi.com\/blog\/#\/schema\/person\/525aba7b1cccc56c405bf42e4aad4910","name":"foodscangenius","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/8a4c5c6081369c97ceb5c135ba5d99504b7ad28ef4672712b5a3a3388802144a?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/8a4c5c6081369c97ceb5c135ba5d99504b7ad28ef4672712b5a3a3388802144a?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8a4c5c6081369c97ceb5c135ba5d99504b7ad28ef4672712b5a3a3388802144a?s=96&r=g","caption":"foodscangenius"},"sameAs":["https:\/\/nutrigraphapi.com\/blog"],"url":"https:\/\/nutrigraphapi.com\/blog\/author\/foodscangenius\/"}]}},"_links":{"self":[{"href":"https:\/\/nutrigraphapi.com\/blog\/wp-json\/wp\/v2\/posts\/328","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nutrigraphapi.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/nutrigraphapi.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/nutrigraphapi.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/nutrigraphapi.com\/blog\/wp-json\/wp\/v2\/comments?post=328"}],"version-history":[{"count":8,"href":"https:\/\/nutrigraphapi.com\/blog\/wp-json\/wp\/v2\/posts\/328\/revisions"}],"predecessor-version":[{"id":455,"href":"https:\/\/nutrigraphapi.com\/blog\/wp-json\/wp\/v2\/posts\/328\/revisions\/455"}],"wp:attachment":[{"href":"https:\/\/nutrigraphapi.com\/blog\/wp-json\/wp\/v2\/media?parent=328"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/nutrigraphapi.com\/blog\/wp-json\/wp\/v2\/categories?post=328"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/nutrigraphapi.com\/blog\/wp-json\/wp\/v2\/tags?post=328"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}