A satledger workspace and the units of recording you pay for, from 0
A satledger workspace and the units of recording you pay for, from 0.50 upward. One unit is one recorded event; an anchor costs 100. Exports and reads are free. Returns an API key on payment.
500000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-30
updated
Provider
api.satledger.org · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xAC6A3A729672a786182e4A7BA29c78587fafE3b4",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "500000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xAC6A3A729672a786182e4A7BA29c78587fafE3b4",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"description": "Tamper-evident usage and action ledgers for AI agents. Every event is ed25519-signed and hash-chained; the buyer's own customers replay the export offline with an Apache-2.0 verifier and never contact this service to check it.",
"input": {
"body": {},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"name": "satledger workspace",
"output": {
"example": {
"api_key": "returned exactly once, never stored",
"tenant_id": "w-3f2a91c0d4e5b678",
"units": 110000
},
"type": "json"
},
"whenToUse": "Call this when you need to prove later what an agent consumed or did, to someone who has no reason to trust you - a customer disputing a bill, an auditor, or a counterparty. Record each event as it happens; hand them the export when asked."
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"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://api.satledger.org/x402/provision" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.satledger.org/x402/provision");
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://api.satledger.org/x402/provision")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/12388.json, and this resource appears in /discovery/resources and /discovery/search.