Your own settled calls in the shape a finance system posts
Your own settled calls in the shape a finance system posts: one row per payment with what was bought, the amount settled, the quoted ceiling where one applied, and the evidence - settlement transaction, sha256 of the bytes delivered, and the on-chain attestation id where one exists. Keyed to the wallet that pays for the call, so nobody can read another wallet's payables; no account, no export request, no support ticket. Requires an EIP-3009 payment (USDC on Base, Polygon, or Arbitrum).
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://agent402.tools/api/receipts
| Category | Market data |
|---|---|
| Provider host | agent402.tools |
| Networks | eip155:10, eip155:1329, eip155:137, eip155:143, eip155:42161, eip155:42220, eip155:43114, eip155:4663, eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.005 | 960 ms |
Example input (from the provider)
{
"body": {
"from": "2026-09-01",
"limit": 100
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"format": {
"description": "\"json\" (default) or \"csv\" - the flat form a subledger imports.",
"type": "string"
},
"from": {
"description": "ISO date or timestamp, inclusive. Default 90 days ago.",
"type": "string"
},
"limit": {
"description": "Max rows per page, 1-5000 (default 500). `total` is the uncapped count for the window and `truncated` says when the page is short of it.",
"type": "number"
},
"to": {
"description": "ISO date or timestamp, inclusive. Default now.",
"type": "string"
}
},
"required": []
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"currency": {
"type": "string"
},
"from": {
"type": "string"
},
"note": {
"type": "string"
},
"returned": {
"type": "integer"
},
"rows": {
"items": {
"type": "object"
},
"type": "array"
},
"to": {
"type": "string"
},
"total": {
"type": "integer"
},
"truncated": {
"type": "boolean"
},
"wallet": {
"type": "string"
}
},
"required": [
"wallet",
"from",
"to",
"returned",
"total",
"truncated",
"currency",
"rows",
"note"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}