Prepare an audit-event export for deterministic comparison
Prepare an audit-event export for deterministic comparison. Normalize up to 100 metadata events and reject duplicate IDs, malformed times or digests. Does not prove events occurred or establish provenance or completeness against an external system.
18000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-13
updated
Provider
www.mahastrategies.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xec84c1cd6602bbe387bc8e6f0d3c062f2762de28",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "18000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"dataClass": "synthetic",
"events": [
{
"eventId": "event-2",
"eventType": "checked",
"occurredAt": "2026-09-09T10:00:01.000Z",
"subjectDigest": "sha256:2222222222222222222222222222222222222222222222222222222222222222"
},
{
"eventId": "event-1",
"eventType": "received",
"occurredAt": "2026-09-09T10:00:00.000Z",
"subjectDigest": "sha256:1111111111111111111111111111111111111111111111111111111111111111"
}
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"amountBaseUnits": "18000",
"boundaries": [
"Public or synthetic inputs only. Caller labels are declarations,…"
],
"inputDigest": "sha256:2dcd0caa0ecc193884234f13d8797c7574d6a1e2d7d54de284455a976…",
"offerId": "audit-export-normalizer",
"receiptDigest": "sha256:1ae3fe0e709941d486c78b14d69a3f6c642e20c45657df8a21a6a3008…",
"result": {
"completenessVerified": false,
"eventOccurrenceVerified": false,
"events": [
{
"eventId": "event-1",
"eventType": "received",
"occurredAt": "2026-09-09T10:00:00.000Z",
"subjectDigest": "sha256:111111111111111111111111111111111111111111111111111111111…"
}
],
"exportDigest": "sha256:863b592c1639b958d8c14c728cb845c6913b6e2725f7ff40d0b665813…"
},
"version": "maha-microproducts/0.1"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"dataClass": {
"enum": [
"public",
"synthetic"
],
"type": "string"
},
"events": {
"maxItems": 100,
"minItems": 1,
"type": "array"
}
},
"required": [
"dataClass",
"events"
],
"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": {
"additionalProperties": false,
"properties": {
"amountBaseUnits": {
"enum": [
"18000"
],
"type": "string"
},
"boundaries": {
"maxItems": 128,
"minItems": 0,
"type": "array"
},
"inputDigest": {
"maxLength": 71,
"type": "string"
},
"offerId": {
"enum": [
"audit-export-normalizer"
],
"type": "string"
},
"receiptDigest": {
"maxLength": 71,
"type": "string"
},
"result": {
"type": "object"
},
"version": {
"enum": [
"maha-microproducts/0.1"
],
"type": "string"
}
},
"required": [
"version",
"offerId",
"amountBaseUnits",
"inputDigest",
"result",
"boundaries",
"receiptDigest"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"declaration-integrity": {
"canonicalResource": "https://www.mahastrategies.com/api/v1/micro/audit-export-normalizer",
"declarationDigest": "sha256:bc1f08cd5390887a1ed02b73d3bbec09b1f38e5d166d51755cb76fa22793a291",
"metadataVersion": "2026-08-10"
},
"maha-offer": {
"amount": "18000",
"asset": "USDC",
"assetDecimals": 6,
"canonicalResource": "https://www.mahastrategies.com/api/v1/micro/audit-export-normalizer",
"declarationInline": "compact",
"declarationUrl": "https://www.mahastrategies.com/api/discovery/x402-offers/audit-export-normalizer",
"fullSourceTextStored": false,
"maxRequestBytes": 32768,
"method": "POST",
"network": "eip155:8453",
"offerId": "audit-export-normalizer",
"payableInProduction": true,
"status": "available",
"verbatimExcerptsRetained": false
}
}Use it
curl
curl "https://www.mahastrategies.com/api/v1/micro/audit-export-normalizer" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://www.mahastrategies.com/api/v1/micro/audit-export-normalizer");
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://www.mahastrategies.com/api/v1/micro/audit-export-normalizer")
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/1422.json, and this resource appears in /discovery/resources and /discovery/search.