# BizIntel API – eBay Product Trends

> BizIntel API – eBay Product Trends is a paid API for AI agents from bizintel-api.hahavoid0.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns current eBay market trend data for a given product, including average price and number of listings analyzed

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/product/ebay-trends
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bizintel-api-ebay-product-trends-bc0c6695
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_k2O_rDJh-HEH7bTY2fbTB

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 bizintel-api-ebay-product-trends-bc0c6695 -d '<json body>'
```

Example prompt: What's the average eBay selling price for an iPhone 13 right now — pull the latest trend data including how many listings were checked.

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call eBay market price estimate without setting up an API key or OAuth flow. It is ideal for one-off resale valuations, pricing intelligence, or inventory benchmarking where a real-time eBay data snapshot is sufficient. Prefer it over scraping or full eBay API integration when low setup overhead and micro-payment billing (USDC on Base) are acceptable tradeoffs.

## Known failure modes

- Unsupported or ambiguous product query may return supported:false with low or no price data
- Very niche products with few listings may return a low confidence rating or sparse listings_analyzed count
- Overly generic queries (e.g. 'phone') may return imprecise or averaged results
- Payment failure via x402/USDC may prevent the call from completing
- Network timeout on the Cloudflare Worker may result in a 5xx error with no result

## How this service works

Parses active and completed listings on eBay to determine average resale pricing trends.

## Output

Returns a JSON object with the average sale price of the queried product on eBay, the number of listings analyzed to derive that estimate, a confidence rating (e.g. 'high'), the data freshness date (month/year), a 'supported' boolean indicating whether the query was resolvable, any warnings, and a disclaimer about informational use only.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "query"
     ],
     "properties": {
      "query": {
       "type": "string",
       "description": "Product model name (e.g. iPhone 13)"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "average_price": 380,
   "listings_analyzed": 5
  },
  "warnings": [],
  "supported": true,
  "confidence": "high",
  "data_as_of": "2026-06",
  "disclaimer": "Informational support only. Not legal, tax, medical, veterinary, or financial advice. Verify with the cited official source or a qualified professional before acting."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bizintel-api-ebay-product-trends-bc0c6695/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bizintel-api.hahavoid0.workers.dev](https://www.zero.xyz/host/bizintel-api.hahavoid0.workers.dev/llms.txt)
