mirrored listing x402 eip155:8453

Signed statement of account for an agent wallet: every outgoing USDC settlement in a windo

Signed statement of account for an agent wallet: every outgoing USDC settlement in a window, read independently from the public Base chain, totalled by counterparty and by day, block-anchored and ed25519-signed so anyone can verify it without Orcpin. Optionally attests the requester's own meter figures as reported, by digest, kept apart from the verified chain facts. The books a wallet does not keep. Counts and amounts only, never advice; nothing stored.

Do you run orcpin.dev? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
5000000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-16
updated

Provider

orcpin.dev · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x8B1CF12e7efe6AEA59cD1124eBbe7709E3Ac6085",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "5000000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "since": "2026-09-01",
          "until": "2026-09-30",
          "wallet": "0x54e100000000000000000000000000000000f4e0"
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "as_of": {
            "block": 51300000,
            "chain": "eip155:8453"
          },
          "disclaimer": "Counts and amounts from public on-chain data; not advice; nothing stored. …",
          "enrichment": {
            "counterparties": 14,
            "resolved": 9
          },
          "representations": {
            "supplied": false
          },
          "schema_version": "statement-v1",
          "signature": {
            "alg": "ed25519",
            "public_key": "…64 hex…",
            "signature": "…128 hex…"
          },
          "signed": true,
          "spec": "statement",
          "verified": {
            "by_counterparty": [
              {
                "pay_to": "0x8b1c…6085",
                "resources": [
                  {
                    "matches_settlement_amounts": true,
                    "price_usd": 0.01,
                    "reliability": {
                      "latency_p50_ms": 250,
                      "sample_size": 1441
                    },
                    "url": "https://orcpin.dev/v1/endpoint-reliability"
                  }
                ],
                "seller": "Orcpin",
                "settlements": 2,
                "usd": 0.03
              }
            ],
            "settlements": 50,
            "usd": 3.61
          },
          "wallet": "0x54e100000000000000000000000000000000f4e0",
          "window": {
            "since": "2026-09-01",
            "until": "2026-09-30"
          }
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "properties": {
                "representations": {
                  "description": "Optional figures from the requester's own meter, attested as reported by digest and never verified: sha256 of the meter records in the window, metered call count, delivered call count, delivered USD.",
                  "properties": {
                    "delivered_calls": {
                      "type": "number"
                    },
                    "delivered_usd": {
                      "type": "number"
                    },
                    "meter_digest": {
                      "type": "string"
                    },
                    "metered_calls": {
                      "type": "number"
                    }
                  },
                  "required": [
                    "meter_digest",
                    "metered_calls",
                    "delivered_calls",
                    "delivered_usd"
                  ],
                  "type": "object"
                },
                "since": {
                  "description": "Window start, YYYY-MM-DD (UTC). Requires `until`. Default: 30 days before `until`.",
                  "type": "string"
                },
                "until": {
                  "description": "Window end, YYYY-MM-DD (UTC). Default: today — only when `since` is also omitted; send both bounds or neither.",
                  "type": "string"
                },
                "wallet": {
                  "description": "The agent wallet, 0x + 40 hex.",
                  "type": "string"
                }
              },
              "required": [
                "wallet"
              ],
              "type": "object"
            },
            "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": {
                "as_of": {
                  "type": "object"
                },
                "disclaimer": {
                  "type": "string"
                },
                "reconciliation": {
                  "type": [
                    "object",
                    "null"
                  ]
                },
                "representations": {
                  "type": "object"
                },
                "schema_version": {
                  "type": "string"
                },
                "signature": {
                  "type": [
                    "object",
                    "null"
                  ]
                },
                "signed": {
                  "type": "boolean"
                },
                "verified": {
                  "type": "object"
                },
                "wallet": {
                  "type": "string"
                },
                "window": {
                  "type": "object"
                }
              },
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://orcpin.dev/v1/statement"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://orcpin.dev/v1/statement");
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://orcpin.dev/v1/statement")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/1484.json, and this resource appears in /discovery/resources and /discovery/search.