mirrored listing x402 eip155:8453

AI Action Receipts: seal the HASHES of an AI action (input/output as hashes; your action l

AI Action Receipts: seal the HASHES of an AI action (input/output as hashes; your action label + meta are published) into GBLIN's signed append-only transparency log. Portable receipt: Ed25519 signature + RFC 6962 inclusion proof + C2SP signed checkpoint; root anchored daily on Base (EAS). Proves existence and time — not a compliance certificate. Free reads + demo: gblin-mcp.gblin-mcp-worker.workers.dev/log. Offline verifier: github.com/gblinproject/gblin-treasury-risk-regime

Do you run gblin.digital? 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
10000 (raw units)
price
4
calls / 30d
1
unique payers
2026-09-06
updated

Provider

gblin.digital · discovered, not yet claimed by its owner

Payment (x402 accepts[])

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

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "action": "summarise-contract",
          "input_hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "checkpoint": "<C2SP signed note>",
          "format": "gblin-receipt/v1",
          "inclusion_proof": [
            "<base64 node>",
            "<base64 node>"
          ],
          "index": 42,
          "leaf": "<base64 sha256(0x00 || canonical)>",
          "payload": {
            "action": "summarise-contract",
            "index": 42,
            "input_hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
            "log": "gblin.digital/receipts-log",
            "output_hash": null,
            "ts": "2026-08-30T09:00:00.000Z",
            "v": 1
          },
          "root": "<base64 Merkle root>",
          "signature": "<base64 Ed25519 over the canonical record>",
          "tree_size": 43,
          "verifier_key": "gblin.digital/receipts-log+00c6e18c+...",
          "verify": "offline: see verify-receipt.mjs in github.com/gblinproject/gblin-treasury-risk-regime (zero deps)"
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "properties": {
                "action": {
                  "description": "Short public label for what the AI did. PUBLISHED in the log: identifiers only, never secrets.",
                  "maxLength": 128,
                  "type": "string"
                },
                "agent_id": {
                  "description": "Your agent identifier (optional). PUBLISHED.",
                  "maxLength": 128,
                  "type": "string"
                },
                "input_hash": {
                  "description": "sha256 of your input, 64 hex chars (0x prefix optional)",
                  "pattern": "^(0x)?[0-9a-fA-F]{64}$",
                  "type": "string"
                },
                "meta": {
                  "description": "Extra JSON object as a string (optional). PUBLISHED.",
                  "maxLength": 512,
                  "type": "string"
                },
                "output_hash": {
                  "description": "sha256 of your output, 64 hex chars (optional)",
                  "pattern": "^((0x)?[0-9a-fA-F]{64})?$",
                  "type": "string"
                },
                "tool": {
                  "description": "Tool or model used (optional). PUBLISHED.",
                  "maxLength": 128,
                  "type": "string"
                }
              },
              "required": [
                "action",
                "input_hash"
              ],
              "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": {
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://gblin.digital/api/x402/seal"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://gblin.digital/api/x402/seal");
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://gblin.digital/api/x402/seal")
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/4167.json, and this resource appears in /discovery/resources and /discovery/search.