# x402 Ecosystem Category Breakdown

> x402 Ecosystem Category Breakdown is a paid API for AI agents from gateway.stride20k.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns the current distribution of x402 services across market categories with count, catalog share, and 7-day growth delta per category

## Facts

- Endpoint: GET https://gateway.stride20k.com/v1/category-breakdown
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-ecosystem-category-breakdown-699be76c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hEj2MNnNnbJ8Nrh7n9Npw

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 x402-ecosystem-category-breakdown-699be76c
```

Example prompt: Give me the current x402 ecosystem category breakdown — how many services are in each category like Data, Inference, Search, and Trading, what share of the market each one holds, and which categories have grown or shrunk over the past 7 days.

## When to prefer this

Use this endpoint when you need a current, structured snapshot of x402 market composition by category — specifically to see where supply is concentrating and which segments are growing. Prefer this over the time-series endpoint when you want a single point-in-time breakdown rather than trend data. This is the right call when you need catalog share percentages and 7-day deltas across all categories in one response.

## Known failure modes

- No data available if collector has not yet run since 2026-07-06 launch (unlikely after initial period)
- Stale data if collector is delayed — check meta.fetchedAt to assess freshness
- HTTP 402 if payment header not provided (endpoint costs $0.005 USDC per call)
- delta7d may be null for categories with insufficient historical data (fewer than 7 days of observations)

## How this service works

Current x402 ecosystem composition: services per category (Agentic.Market taxonomy: Data, Inference, Search, Infra, Media, Social, Trading, Travel...), each with catalog share and 7-day delta, from our collector's latest observation run (~3x/day since 2026-07-06). Shows where x402 supply is concentrating and which categories are growing. Deterministic read from archived observations; no upstream calls at request time. Free snapshot: /v1/market-pulse.

## Output

A JSON object with an array of category entries, each containing the category name, number of services, share of total catalog (as a decimal), and 7-day delta in share or count. Also includes total service count across all categories and the timestamp of the latest observation run. Response is served from cache if freshly collected; meta field indicates whether cached and when fetched.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "data": {
   "source": "Agentic.Market catalog (Coinbase-operated), collected ~3x/day",
   "categories": [
    {
     "share": 0.954,
     "delta7d": null,
     "category": "uncategorized",
     "services": 1471
    },
    {
     "share": 0.02,
     "delta7d": null,
     "category": "Data",
     "services": 31
    },
    {
     "share": 0.006,
     "delta7d": null,
     "category": "Inference",
     "services": 9
    },
    {
     "share": 0.005,
     "delta7d": null,
     "category": "Search",
     "services": 7
    },
    {
     "share": 0.005,
     "delta7d": null,
     "category": "Infra",
     "services": 7
    },
    {
     "share": 0.004,
     "delta7d": null,
     "category": "Social",
     "services": 6
    },
    {
     "share": 0.003,
     "delta7d": null,
     "category": "Media",
     "services": 5
    },
    {
     "share": 0.001,
     "delta7d": null,
     "category": "Travel",
     "services": 2
    }
   ],
   "observedAt": "2026-07-06T19:47:36.508Z",
   "totalServices": 1542
  },
  "meta": {
   "cached": false,
   "source": "Stride20k market collector (archived public-source observations)",
   "fetchedAt": "2026-07-04T00:00:00.000Z",
   "attribution": null
  },
  "endpoint": "/v1/category-breakdown"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-ecosystem-category-breakdown-699be76c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gateway.stride20k.com](https://www.zero.xyz/host/gateway.stride20k.com/llms.txt)
