API Documentation

Everything you need to integrate with NutriGraph API. Get started in minutes with our comprehensive guides and examples.

Quick Start Guide

Get up and running with NutriGraph API in less than 5 minutes.

1. Get Your API Key

Sign up for a free account and get your API key from the dashboard.

Get Free API Key

2. Make Your First Request

curl -X GET "https://api-nutrigraph.scangeni.us/v1/products/search?q=apple" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

3. Handle the Response

{
  "success": true,
  "data": {
    "products": [
      {
        "id": "apple_gala_fresh",
        "name": "Gala Apple",
        "brand": "Fresh Produce",
        "nutrition": {
          "calories": 80,
          "protein": 0.4,
          "carbs": 22,
          "fat": 0.3,
          "fiber": 4.4
        },
        "allergens": [],
        "verified": true
      }
    ],
    "total": 1,
    "page": 1
  }
}