# market2000.xyz API Pricing Guidance

> market2000.xyz API Pricing Guidance 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 data-driven pricing recommendations for x402 API categories by cross-referencing agent demand, market price percentiles, and conversion rates by price band.

## Facts

- Endpoint: GET https://market2000.xyz/api/demand/pricing
- 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-api-pricing-guidance-1b21e964
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__AwFTkLEzMSfv6yKCqA5M

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-api-pricing-guidance-1b21e964
```

Example prompt: What should I charge for my new market-data API? Pull the pricing guidance from market2000's demand dataset for the market-data category and tell me the suggested price and the reasoning behind it.

## When to prefer this

Use this endpoint when you need data-driven pricing recommendations specifically grounded in observed AI agent demand and real x402 market pricing, rather than generic SaaS pricing advice. It is especially valuable when launching or repricing an x402-compatible API and wanting to benchmark against actual competing origins and conversion data.

## Known failure modes

- Unknown or misspelled category returns empty results or an error
- Stale data if the x402 catalogue has not been recently crawled
- Payment failure if x402 payment header is missing or insufficient
- Rate limiting if too many calls are made in quick succession

## How this service works

What should you charge? Pricing guidance from three crossed datasets.

Measured agent demand per category, the price percentiles the field actually charges from the public x402 catalogue, and observed conversion by price band — resolved into a suggested price with the reasoning attached.

HOW TO CALL:
  GET /api/demand/pricing?category=market-data

PARAMETERS:
  category — optional; omit for every category

RESPONSE: categories[] with observed demand, field price percentiles, competing origin count, a suggested price and its rationale.

PRICING: $0.10 per call.

## Output

A list of categories, each with observed agent demand metrics, price percentile distribution from the live x402 catalogue, count of competing origins, a suggested price point, and a human-readable rationale explaining why that price is recommended based on the crossed datasets.

## 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-api-pricing-guidance-1b21e964/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)
