# agentdatum.com USDA Food Nutrition Lookup

> agentdatum.com USDA Food Nutrition Lookup is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Queries the USDA food nutrition database to retrieve nutritional composition data for foods and ingredients

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/health/nutrition
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentdatum-com-usda-food-nutrition-lookup-9e73cd42
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TJPJC5cKfotWZr65plhOe

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agentdatum-com-usda-food-nutrition-lookup-9e73cd42
```

Example prompt: Look up the nutritional composition of raw almonds from the USDA food database — I need calories, protein, fat, carbs, and fiber per 100g.

## When to prefer this

Choose this endpoint when you need authoritative USDA-sourced nutritional data for foods and ingredients, particularly for diet tracking, recipe analysis, or health applications requiring official government nutrition figures. Prefer this over general AI-generated nutrition estimates when accuracy and USDA provenance matter.

## Known failure modes

- Food item not found in USDA database — returns empty or null result
- Ambiguous food name matching multiple entries — may return incorrect or unexpected item
- Missing or malformed query parameter — request fails with validation error
- Payment not processed — 402 response if x402 payment header is absent or invalid
- Rate limiting or service unavailability — 429 or 503 response

## How this service works

营养查询：USDA食品营养成分数据库

## Output

Returns nutritional composition data from the USDA food database for the queried food item, including macronutrients (calories, protein, fat, carbohydrates), micronutrients (vitamins, minerals), and dietary fiber values per standard serving or per 100g

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentdatum-com-usda-food-nutrition-lookup-9e73cd42/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
