$0.01
per call · USD Coin on Base
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
Endpoint
POST https://gblin.digital/api/x402/seal4
Calls / 30d
1
Unique payers / 30d
Sep 6
Last called
exact
Payment scheme
Call this service
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";
const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);
const res = await fetchWithPay("https://gblin.digital/api/x402/seal", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"action": "summarise-contract",
"input_hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
}),
});
const data = await res.json();curl -X POST \
"https://gblin.digital/api/x402/seal" \
-H "Content-Type: application/json" \
-d '{"action":"summarise-contract","input_hash":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"}' \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"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)"
}Payment details
0x0eba5d314f4f5dcb7a094953fa9311a45172dd1bUSD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of Developer Tools and the homepage with a featured placement.
More from Gblin & similar services
Gblin · Treasury State
gblin.digital
Real-time GBLIN protocol state: NAV in USD, basket composition with dynamic weights, and Crash Shield status.
Gblin · Governance
gblin.digital
GBLIN protocol governance state: owner, the 48h timelock delay that every owner-only change must pass through, and any pending operation.
Gblin · Attestation
gblin.digital
EIP-712-signed risk attestation, verifiable OFFLINE in one step — no trust in this server required. Perishable (10-min) proof of the BTC/ETH risk regime (calm | elevated | crash) from GBLIN's on-chain Crash Shield on Base. Bought daily by a third-party ERC-8004 agent as a pinned input of its decision rule until 16 Aug 2026 (see /receipts). FREE sample: GET /api/x402/attestation-sample. Free verifier: verify_risk_attestation in @gblin-protocol/mcp-server.