Provide a Tempo or Base recipient address and optional UTC bounds within a maximum 31-day
Provide a Tempo or Base recipient address and optional UTC bounds within a maximum 31-day window (default seven days). Receive JSON from public chain data with incoming stablecoin transfers, totals, and product, protocol-fee, or unknown classifications.
100000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-20
updated
Provider
payment-recon.krimskrams.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x276efA09388fB1578A6c415B8F90D26fdfCe0CF2",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "100000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"address": "0x1111111111111111111111111111111111111111",
"chain": "tempo",
"since": "2026-08-12T00:00:00Z",
"until": "2026-08-19T00:00:00Z"
},
"type": "http"
},
"output": {
"example": {
"address": "0x1111111111111111111111111111111111111111",
"chain": "tempo",
"classes": {
"product": {
"count": 1,
"total_usd": "0.100000"
},
"protocol_fee": {
"count": 0,
"total_usd": "0.000000"
},
"unknown": {
"count": 0,
"total_usd": "0.000000"
}
},
"note": "One address can serve several services, so product means not a known protocol fee. Counterparty addresses remain pseudonymous.",
"reconciles": true,
"total_usd": "0.100000",
"transfer_count": 1,
"transfers": [],
"truncated": false,
"window": {
"since": "2026-08-12T00:00:00Z",
"until": "2026-08-19T00:00:00Z"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"address": {
"pattern": "^0x[0-9a-fA-F]{40}$",
"type": "string"
},
"chain": {
"enum": [
"tempo",
"base"
],
"type": "string"
},
"since": {
"format": "date-time",
"type": "string"
},
"until": {
"format": "date-time",
"type": "string"
}
},
"required": [
"chain",
"address"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"address": {
"title": "Address",
"type": "string"
},
"chain": {
"enum": [
"tempo",
"base"
],
"title": "Chain",
"type": "string"
},
"classes": {
"additionalProperties": {
"properties": {
"count": {
"title": "Count",
"type": "integer"
},
"total_usd": {
"title": "Total Usd",
"type": "string"
}
},
"title": "ClassSummary",
"type": "object"
},
"title": "Classes",
"type": "object"
},
"note": {
"title": "Note",
"type": "string"
},
"reconciles": {
"title": "Reconciles",
"type": "boolean"
},
"total_usd": {
"title": "Total Usd",
"type": "string"
},
"transfer_count": {
"title": "Transfer Count",
"type": "integer"
},
"transfers": {
"items": {
"properties": {
"amount_usd": {
"title": "Amount Usd",
"type": "string"
},
"block": {
"title": "Block",
"type": "integer"
},
"class": {
"enum": [
"product",
"protocol_fee",
"unknown"
],
"title": "Class",
"type": "string"
},
"from": {
"title": "From",
"type": "string"
},
"timestamp": {
"format": "date-time",
"title": "Timestamp",
"type": "string"
},
"tx_hash": {
"title": "Tx Hash",
"type": "string"
}
},
"title": "TransferRow",
"type": "object"
},
"title": "Transfers",
"type": "array"
},
"truncated": {
"title": "Truncated",
"type": "boolean"
},
"window": {
"additionalProperties": {
"format": "date-time",
"type": "string"
},
"title": "Window",
"type": "object"
}
},
"title": "ReportResponse",
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://payment-recon.krimskrams.xyz/v1/report" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://payment-recon.krimskrams.xyz/v1/report");
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://payment-recon.krimskrams.xyz/v1/report")
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/9115.json, and this resource appears in /discovery/resources and /discovery/search.