ToolAssay

Notarize AI output in bulk

Notarize AI output in bulk: one signed Ed25519 attestation of the model response per record for up to 20 AI inferences in a single call — same content hash, receipt token, and anchor status as single notarization, giving you a cryptographic receipt for inference across an entire audit-trail pipeline.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
720 msmedian answer time
$0.005listed price per call
$0.005price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://notary.forgemesh.io/api/notarize/batch

CategoryCode and developer
Provider hostnotary.forgemesh.io
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days2 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.005 720 ms

Example input (from the provider)

{
  "body": {
    "records": [
      {
        "model_id": "openai/gpt-5",
        "prompt": "What is 2+2?",
        "response": "4"
      },
      {
        "model_id": "claude-fable-5",
        "prompt": "Capital of France?",
        "response": "Paris"
      }
    ]
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "properties": {
            "records": {
              "items": {
                "properties": {
                  "client_timestamp": {
                    "description": "ISO-8601 time the inference ran (optional; included in the content hash)",
                    "type": "string"
                  },
                  "metadata": {
                    "description": "Optional caller metadata, <= 4 KB \u2014 accepted but NOT persisted or hashed (reserved for future opt-in retention)",
                    "type": "object"
                  },
                  "model_id": {
                    "description": "Model identifier, e.g. openai/gpt-5 or claude-fable-5",
                    "type": "string"
                  },
                  "prompt": {
                    "description": "Exact prompt/input sent to the model",
                    "type": "string"
                  },
                  "response": {
                    "description": "Exact model output being notarized",
                    "type": "string"
                  }
                },
                "required": [
                  "prompt",
                  "response",
                  "model_id"
                ],
                "type": "object"
              },
              "maxItems": 20,
              "minItems": 1,
              "type": "array"
            }
          },
          "required": [
            "records"
          ],
          "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": {
          "properties": {
            "attestations": {
              "items": {
                "properties": {
                  "algorithm": {
                    "type": "string"
                  },
                  "anchor": {
                    "properties": {
                      "status": {
                        "type": "string"
                      }
                    },
                    "type": "object"
                  },
                  "attestation_id": {
                    "type": "string"
                  },
                  "client_timestamp": {
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "content_hash": {
                    "description": "sha256 hex over canonical {prompt, response, model_id, client_timestamp}",
                    "type": "string"
                  },
                  "model_id": {
                    "type": "string"
                  },
                  "notarized_at": {
                    "type": "string"
                  },
                  "payload_stored": {
                    "description": "false by default: prompt/response/metadata are not persisted",
                    "type": "boolean"
                  },
                  "receipt_token": {
                    "description": "Private receipt token; payload is not stored by default",
                    "type": "string"
                  },
                  "receipt_url": {
                    "type": "string"
                  },
                  "signature": {
                    "description": "base64 Ed25519 signature by the notary key",
                    "type": "string"
                  },
                  "signer_pubkey": {
                    "description": "base64 raw Ed25519 public key",
                    "type": "string"
                  }
                },
                "type": "object"
              },
              "type": "array"
            },
            "count": {
              "type": "integer"
            }
          },
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON