Current x402 ecosystem composition: services per category (Agentic
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.
5000 (raw units)
price
13
calls / 30d
9
unique payers
2026-09-13
updated
Provider
gateway.stride20k.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x552Cc4A10878C7F20574489D47184249657Ca3f6",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"data": {
"categories": [
{
"category": "uncategorized",
"delta7d": null,
"services": 1471,
"share": 0.954
},
{
"category": "Data",
"delta7d": null,
"services": 31,
"share": 0.02
},
{
"category": "Inference",
"delta7d": null,
"services": 9,
"share": 0.006
},
{
"category": "Search",
"delta7d": null,
"services": 7,
"share": 0.005
},
{
"category": "Infra",
"delta7d": null,
"services": 7,
"share": 0.005
},
{
"category": "Social",
"delta7d": null,
"services": 6,
"share": 0.004
},
{
"category": "Media",
"delta7d": null,
"services": 5,
"share": 0.003
},
{
"category": "Travel",
"delta7d": null,
"services": 2,
"share": 0.001
}
],
"observedAt": "2026-07-06T19:47:36.508Z",
"source": "Agentic.Market catalog (Coinbase-operated), collected ~3x/day",
"totalServices": 1542
},
"endpoint": "/v1/category-breakdown",
"meta": {
"attribution": null,
"cached": false,
"fetchedAt": "2026-07-04T00:00:00.000Z",
"source": "Aye Pulse market collector (archived public-source observations)"
},
"ok": true
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"data": {
"properties": {
"categories": {
"items": {
"properties": {
"category": {
"type": "string"
},
"delta7d": {
"type": [
"number",
"null"
]
},
"services": {
"type": "number"
},
"share": {
"type": "number"
}
},
"type": "object"
},
"type": "array"
},
"observedAt": {
"type": "string"
},
"source": {
"type": "string"
},
"totalServices": {
"type": "number"
}
},
"required": [
"observedAt",
"totalServices",
"categories"
],
"type": "object"
},
"endpoint": {
"description": "Always \"/v1/category-breakdown\".",
"type": "string"
},
"meta": {
"properties": {
"attribution": {
"description": "Licensing attribution when the source requires it.",
"type": [
"string",
"null"
]
},
"cached": {
"description": "Whether this response was served from cache.",
"type": "boolean"
},
"fetchedAt": {
"description": "ISO 8601 time the data was actually retrieved from the upstream.",
"type": "string"
},
"source": {
"description": "Upstream source: Aye Pulse market collector (archived public-source observations).",
"type": "string"
}
},
"required": [
"source",
"cached",
"fetchedAt"
],
"type": "object"
},
"ok": {
"description": "true on success.",
"type": "boolean"
}
},
"required": [
"ok",
"endpoint",
"data",
"meta"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://gateway.stride20k.com/v1/category-breakdown" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://gateway.stride20k.com/v1/category-breakdown");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://gateway.stride20k.com/v1/category-breakdown")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/1147.json, and this resource appears in /discovery/resources and /discovery/search.