# LION CPG Product & Price Intelligence

> LION CPG Product & Price Intelligence is a paid API for AI agents from lionx402.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Looks up consumer packaged goods product data and retail price intelligence by barcode, returning nutrition, eco-score, brand metadata, and per-location pricing from Open Food Facts and Open Prices.

## Facts

- Endpoint: GET https://lionx402.com/api/x402/cpg-product-intel-json
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lion-cpg-product-price-intelligence-26ee575f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vwTYN5iQLUJSC5v4Ewd52

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 lion-cpg-product-price-intelligence-26ee575f
```

Example prompt: Can you pull up the product info and current retail prices for barcode 5449000000996 — I need the nutrition facts, NOVA score, eco-score, and any recent store prices in Europe?

## When to prefer this

Use this endpoint when you need structured CPG product data (nutrition, eco-score, NOVA, brand) combined with real-world retail pricing by location, sourced from open datasets and delivered with cryptographic attestation. Prefer over generic web scraping when you need machine-readable, attested food product intelligence without managing API keys.

## Known failure modes

- Barcode not found in Open Food Facts — resolved:false with low confidence
- Product exists but no price data available — prices array is empty
- Invalid or malformed barcode format — API returns error
- Payment not completed via x402/USDC — 402 Payment Required response
- Temporary upstream Open Food Facts data unavailability

## How this service works

CPG product data + shop prices by barcode or name. Open Food Facts + Open Prices. Ed25519 attested.

## Output

A JSON object containing the product name, brand, NOVA score, eco-score, nutritional values per 100g, labels, countries, categories, and an array of retail prices with date, amount, currency, and store location. Also includes data sources, confidence score, and an Ed25519-attested asset ID for offline verification.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "name": {
       "type": "string",
       "description": "Product name search"
      },
      "barcode": {
       "type": "string",
       "description": "EAN/UPC barcode"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "service": "LION Verified Company",
  "asset_id": "LION",
  "resolved": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lion-cpg-product-price-intelligence-26ee575f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from lionx402.com](https://www.zero.xyz/host/lionx402.com/llms.txt)
