kairostamp.com

Kairostamp change check: server-side fetch of one public http/https URL, compared against a caller-supplied prior SHA-256 or prior Kairostamp receipt id. Returns whether the response body changed, both digests, and a new time-stamped evidence receipt with its tamper-evident hash-chain entry. One call performs one check; repeat monitoring means calling again.

OtherLiveeip155:8453Exactvia cdp
Calls · 30d
4↓ 24%
This endpoint's own trailing-30-day call count, as published by the upstream catalog and snapshotted daily. 29 snapshots so far.
$0.04
Verified settled volume
11 settlements proven x402 by their on-chain EIP-3009 marker.
$0.010
Listed price
As published in the catalog. Always read the live 402 before paying.
4
Calls · 30d
Upstream's own call count for this endpoint, not ours.
1
Unique payers · 30d
Last called 2026-08-23 05:25Z
Upstream on-chain volume
Reported by the source catalog.
Paid to
0xdB6F694aE695C632C82677a50593B46137808453

The wallet the 402 directs payment to. Its whole payment record — every payer, every chain — is on the merchant page.

Asset 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913

Provider

The payTo wallet does not resolve to a registered ERC-8004 agent. That is not a verdict on the service — most of the catalog is unregistered.

Accepts

The payment requirements as published to the catalog. Read the live 402 before paying — a price here is a claim, not a quote.

0.01USDC≈ $0.01 USD
on Base · exact scheme

Pay 0.01 USDC on Base to 0xdB6F…08453. The signed payment is good for 5 minutes.

USD Coin contract
0x8335…02913
Payment window
5 minutes
As published
10000 smallest units
The catalog’s raw entry
[
  {
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "extra": {
      "name": "USD Coin",
      "version": "2"
    },
    "payTo": "0xdB6F694aE695C632C82677a50593B46137808453",
    "amount": "10000",
    "scheme": "exact",
    "network": "eip155:8453",
    "maxTimeoutSeconds": 300
  }
]

Extensions

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "url": "https://example.com/",
          "prior_sha256": "ff67a9d764d6a2367a187734e697f6a53217db9a21c101d410a113ca871a299d"
        },
        "type": "http",
        "method": "POST",
        "bodyType": "json"
      },
      "output": {
        "type": "json",
        "example": {
          "changed": false,
          "receipt": {
            "url": "https://example.com/",
            "sha256": "ff67a9d764d6a2367a187734e697f6a53217db9a21c101d410a113ca871a299d",
            "fetched_at": "2026-08-22T03:12:04.114Z",
            "byte_length": 559,
            "status_code": 200,
            "content_type": "text/html",
            "text_preview": "<!doctype html><html lang=\"en\"><head><title>Example Domain</title>…",
            "redirect_chain": []
          },
          "chain_hash": "d084fff3e5d852089814f7d4d3ffe9d04d1a39ce9d2e0573a95f24cf78fb584d",
          "receipt_id": "85cd424c-b68b-440e-8f4f-e02147799f30",
          "current_sha256": "ff67a9d764d6a2367a187734e697f6a53217db9a21c101d410a113ca871a299d",
          "previous_sha256": "ff67a9d764d6a2367a187734e697f6a53217db9a21c101d410a113ca871a299d",
          "previous_chain_hash": "da27fe24efc04330962d1b95c7929a9de901ad0ea49a7997edf9f2731bf88def"
        }
      }
    },
    "schema": {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "input"
      ],
      "properties": {
        "input": {
          "type": "object",
          "required": [
            "type",
            "method",
            "bodyType",
            "body"
          ],
          "properties": {
            "body": {
              "type": "object",
              "examples": [
                {
                  "url": "https://example.com/",
                  "prior_sha256": "ff67a9d764d6a2367a187734e697f6a53217db9a21c101d410a113ca871a299d"
                }
              ],
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "format": "uri",
                  "examples": [
                    "https://example.com/"
                  ],
                  "maxLength": 2048,
                  "description": "Public http/https URL to fetch and compare."
                },
                "prior_sha256": {
                  "type": "string",
                  "pattern": "^[0-9a-f]{64}$",
                  "description": "SHA-256 of the previously observed response body. Supply exactly one of prior_sha256 or prior_receipt_id."
                },
                "prior_receipt_id": {
                  "type": "string",
                  "format": "uuid",
                  "description": "Id of an earlier Kairostamp receipt whose digest should be used as the baseline. Supply exactly one of prior_sha256 or prior_receipt_id."
                }
              },
              "additionalProperties": false
            },
            "type": {
              "type": "string",
              "const": "http"
            },
            "method": {
              "enum": [
                "POST"
              ],
              "type": "string"
            },
            "bodyType": {
              "enum": [
                "json",
                "form-data",
                "text"
              ],
              "type": "string"
            }
          },
          "additionalProperties": false
        },
        "output": {
          "type": "object",
          "required": [
            "type"
          ],
          "properties": {
            "type": {
              "type": "string"
            },
            "example": {
              "type": "object",
              "required": [
                "changed",
                "previous_sha256",
                "current_sha256",
                "receipt_id",
                "chain_hash",
                "receipt"
              ],
              "properties": {
                "changed": {
                  "type": "boolean",
                  "description": "True when the current body digest differs from the baseline digest."
                },
                "receipt": {
                  "type": "object",
                  "required": [
                    "url",
                    "fetched_at",
                    "status_code",
                    "content_type",
                    "byte_length",
                    "sha256",
                    "redirect_chain",
                    "text_preview"
                  ],
                  "properties": {
                    "url": {
                      "type": "string",
                      "format": "uri"
                    },
                    "sha256": {
                      "type": "string"
                    },
                    "fetched_at": {
                      "type": "string",
                      "format": "date-time"
                    },
                    "byte_length": {
                      "type": "integer"
                    },
                    "status_code": {
                      "type": "integer"
                    },
                    "content_type": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "text_preview": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "redirect_chain": {
                      "type": "array",
                      "items": {
                        "type": "string",
                        "format": "uri"
                      }
                    }
                  }
                },
                "chain_hash": {
                  "type": "string",
                  "description": "Hash-chain value of this receipt."
                },
                "receipt_id": {
                  "type": "string",
                  "format": "uuid",
                  "description": "Evidence receipt identifier."
                },
                "current_sha256": {
                  "type": "string",
                  "description": "SHA-256 of the body fetched now."
                },
                "previous_sha256": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Baseline digest used for the comparison."
                },
                "previous_chain_hash": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Hash-chain value of the previous receipt."
                }
              }
            }
          }
        }
      }
    }
  },
  "builder-code": {
    "info": {
      "s": [
        "cdp_sdk_server"
      ]
    },
    "schema": {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "a": {
          "type": "string",
          "pattern": "^[a-z0-9_]{1,32}$",
          "description": "App builder code"
        },
        "s": {
          "type": "array",
          "items": {
            "type": "string",
            "pattern": "^[a-z0-9_]{1,32}$"
          },
          "maxItems": 11,
          "description": "Service builder codes"
        },
        "w": {
          "type": "string",
          "pattern": "^[a-z0-9_]{1,32}$",
          "description": "Wallet builder code"
        }
      },
      "additionalProperties": false
    }
  },
  "eip2612GasSponsoring": {},
  "erc20ApprovalGasSponsoring": {}
}

Provenance

Seen in the source catalog
2026-08-23 05:25Z
Last indexed by Roundhouse
2026-09-22 05:10Z
Last enriched (probe, favicon, geo)
2026-09-10 01:45Z
x402 version
2
Max timeout
300s
Liveness probe
HTTP 405
Report

Hand this page to an agent

Copy the prompt and paste it into Claude, an MCP client or your own agent — it will vet this service and call it over the free read API. No key, no account.

GET api.roundhouseai.io/v0/endpoints

This endpoint's own trailing-30-day call count, as published by the upstream catalog and snapshotted daily. 29 snapshots so far. Verified volume counts only settlements with an on-chain EIP-3009 marker.

Open skill.md
Show the prompt
Using Roundhouse, look up the x402 service kairostamp.com and tell me whether it is
worth paying: what a call costs, whether the endpoint answered when last probed, and what
its payment record actually shows.

curl -s 'https://api.roundhouseai.io/v0/endpoints?q=kairostamp.com'
curl -s 'https://api.roundhouseai.io/v0/merchants/<the payTo wallet returned above>'

Then call it: read the price from the live 402 at https://kairostamp.com/api/v1/change-check, never from
a cached figure, and pay with an x402 client.

The /v0 API needs an API key (`authorization: Bearer rh_live_…`) on everything except
/v0/unified* and /v0/endpoints. Mint a personal key for $0.01 at GET https://api.roundhouseai.io/v0/test/x402,
or use an organization key from https://roundhouseai.io/dashboard/team.

If you do not have Roundhouse tools or skills installed, read
https://roundhouseai.io/skill.md first — it is the whole procedure.