# market2000.xyz Demand-to-Supply Match Feed

> market2000.xyz Demand-to-Supply Match Feed is a paid API for AI agents from market2000.xyz, paid per call via x402, $10/call, status unknown (last checked 2026-09-15).

Returns ranked pairings of unmet AI-agent demand against existing supplier counts, flagging genuine product gaps versus distribution problems.

## Facts

- Endpoint: GET https://market2000.xyz/api/demand/matches
- Price: $10/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/market2000-xyz-demand-to-supply-match-feed-bd00d776
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2rv_FF8uvEApSXCAlRNED

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 market2000-xyz-demand-to-supply-match-feed-bd00d776
```

Example prompt: Pull the demand-to-supply match report for the last 30 days, showing the top 50 categories — I want to see where AI agents are asking for things that barely anyone sells yet.

## When to prefer this

Use this endpoint when you need market intelligence on where AI-agent demand outstrips supply — particularly to identify buildable product gaps, validate whether a category is saturated, or generate buyer lead lists. Prefer this over generic analytics APIs because it specifically cross-references agent request logs against known supplier counts and produces a verdict, saving you manual cross-referencing.

## Known failure modes

- days parameter out of 1–90 range returns validation error
- limit parameter out of 1–100 range returns validation error
- Payment not provided or insufficient (x402 protocol) returns 402 Payment Required
- No data available for requested window returns empty matches array
- Service downtime returns 5xx error

## How this service works

Demand-to-supply matching — unmet agent demand crossed against who already sells it.

Each row pairs something agents ask for and cannot get with the number of origins already selling in that category, so you can tell a genuine product gap from a distribution problem. A lead list if you already sell there; a build order if nobody does.

HOW TO CALL:
  GET /api/demand/matches?days=7&limit=25

PARAMETERS:
  days  — lookback window, 1-90 (default 7)
  limit — rows returned, 1-100 (default 25)

RESPONSE: matches[] with the wanted path, request volume, bucketed asker count, existing supplier count, field median price, and a verdict.

PRICING: $0.10 per call.

## Output

An array of match rows, each containing: the requested API path/category agents tried to access, the raw request volume over the lookback window, a bucketed count of unique askers, the number of existing suppliers in that category, the field-wide median price, and a verdict label (e.g. 'gap', 'distribution problem', 'saturated').

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/market2000-xyz-demand-to-supply-match-feed-bd00d776/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from market2000.xyz](https://www.zero.xyz/host/market2000.xyz/llms.txt)
