Track one agent service over time - the full day-by-day history of any x402 listing or MCP
Track one agent service over time - the full day-by-day history of any x402 listing or MCP server: price changes, paying customers, call volume, installs, first and last seen. See what a listing like yours earns, watch a competitor grow or die. From daily whole-market snapshots the live catalogs don't keep. ?id=<x402 resource URL or MCP registry name> (find ids via /find, free). Market overview: /market/pulse $0.005.
5000 (raw units)
price
3
calls / 30d
2
unique payers
2026-09-17
updated
Provider
clink-lithium-vault.fly.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xB1eF5415E9D3695e16977B8be422AB7512F788C0",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 90
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"id": "https://x402.tavily.com/search"
},
"type": "http"
},
"output": {
"example": {
"history": [
{
"date": "2026-08-25",
"est_revenue_30d_usd": 3.2,
"payers_30d": 231
}
],
"service": {
"id": "https://...",
"publisher": "..."
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"id": {
"description": "listing id: the x402 resource URL, or the MCP registry server name",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://clink-lithium-vault.fly.dev/market/service" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://clink-lithium-vault.fly.dev/market/service");
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://clink-lithium-vault.fly.dev/market/service")
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/5831.json, and this resource appears in /discovery/resources and /discovery/search.