# SYNTHORA Product Barcode Lookup via Open Food Facts

> SYNTHORA Product Barcode Lookup via Open Food Facts is a paid API for AI agents from openfoodfacts.hergertsynthora.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Looks up food product details (name, brand, ingredients, nutrition grade, labels) by barcode using the Open Food Facts global database

## Facts

- Endpoint: POST https://openfoodfacts.hergertsynthora.com/service
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/synthora-product-barcode-lookup-via-open-food-facts-e307102a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zidJiX9aTgPIjVpwuIH9v

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 synthora-product-barcode-lookup-via-open-food-facts-e307102a -d '<json body>'
```

Example prompt: Can you look up barcode 3017620422003 and tell me the product name, brand, ingredients, and nutrition grade?

## When to prefer this

Choose this endpoint when you need to resolve a physical product barcode (UPC, EAN, or similar) to structured food product metadata including ingredients, nutrition grade, and labels. It is ideal for food-related applications, diet tracking, label verification, or consumer transparency workflows where Open Food Facts coverage (global, free, community-maintained) is sufficient. Prefer this over proprietary product databases when cost and open-data access are priorities.

## Known failure modes

- Barcode not found in Open Food Facts database — returns ok:false or empty result
- Invalid or malformed barcode string — may return error or empty match
- Product exists but has incomplete data (missing nutrition grade or ingredients) in Open Food Facts
- Payment failure via x402 protocol — request not processed
- Network timeout or service unavailability

## How this service works

Look up any product by barcode via Open Food Facts: name, brand, ingredients, nutrition grade, labels. Free global product database. $0.01 USDC via x402.

## Output

Returns a JSON object with ok status, niche identifier ('openfoodfacts'), and a result object containing product details such as name, brand, ingredients list, nutrition grade (e.g. A–E), and product labels sourced from the Open Food Facts global database.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "barcode"
 ],
 "properties": {
  "barcode": {
   "type": "string",
   "description": "barcode"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/synthora-product-barcode-lookup-via-open-food-facts-e307102a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from openfoodfacts.hergertsynthora.com](https://www.zero.xyz/host/openfoodfacts.hergertsynthora.com/llms.txt)
