One Capital Markets Record for $0
One Capital Markets Record for $0.01 USDC — a listed issuer's identity, registry identifiers, aliases, listing, disclosure events, auditor and transfer agent, each field sourced to the public filing, served from the node of the issuer's own market (eleven markets, in-country). Path: /x402/record/{node}/{exchange}/{code}, e.g. uk-cm-kg/LSE/BARC. The same record the free MCP door serves; the payment buys the receipted call.
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-13
updated
Provider
agentic-trades.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x0Bfd52Ea41841D0F1121399167bfE36781d40ebB",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"code": {
"description": "ticker, ISIN or LEI",
"example": "BARC",
"required": true,
"type": "string"
},
"exchange": {
"description": "exchange code, e.g. LSE",
"example": "LSE",
"required": true,
"type": "string"
},
"node": {
"description": "market node, e.g. uk-cm-kg",
"example": "uk-cm-kg",
"required": true,
"type": "string"
}
},
"type": "http"
},
"output": {
"example": {
"aliases": [],
"cmr": "v0",
"events": [],
"identity": {
"lei": "213800LBQA1Y9L22JB70",
"name": "Barclays PLC"
},
"node": "uk-cm-kg"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"pathParams": {
"type": "object"
},
"queryParams": {
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://agentic-trades.ai/x402/record/uk-cm-kg/LSE/BARC" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://agentic-trades.ai/x402/record/uk-cm-kg/LSE/BARC");
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://agentic-trades.ai/x402/record/uk-cm-kg/LSE/BARC")
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/13530.json, and this resource appears in /discovery/resources and /discovery/search.