ToolAssay

Verify output and validate work another AI agent hands back, before you pay, rel

Verify output and validate work another AI agent hands back, before you pay, release escrow, or pass it on. An acceptance test and quality check: send the task and the deliverable, get accept or reject with every requirement judged. Counts, required JSON fields, and sums are checked in code. Deliverables that certify themselves or inject instructions never pass. Signed receipt binding task, deliverable, and payment hashes. $0.03.

Not tested: has real-world effectsour last check, 2026-09-25
0 of 0checks answered this week
n/amedian answer time
$0.03listed price per call
n/aprice 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://crosscheckapi.com/v1/accept

CategoryCode and developer
Provider hostcrosscheckapi.com
Networkseip155:8453, eip155:84532
Payment schemesexact
Self-reported calls, 30 days7 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

We never call tools that send, buy, move money or file anything, not even without paying.

Example input (from the provider)

{
  "body": {
    "deliverable": "[{\"name\": \"Northwind Robotics\", \"hq\": \"Denver\", \"founded\": 2011}, {\"name\": \"Globex Automation\", \"hq\": \"Austin\", \"founded\": 2016}, {\"name\": \"Initech Motion\", \"hq\": \"Toronto\", \"founded\": 2019}]",
    "task": "List 5 competitors of Acme Robotics, each with its headquarters city and founding year, as a JSON array."
  },
  "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": {
          "additionalProperties": false,
          "properties": {
            "deliverable": {
              "description": "What came back, exactly as received",
              "minLength": 1,
              "type": "string"
            },
            "payment_network": {
              "description": "CAIP-2 network of payment_tx, default eip155:8453",
              "type": "string"
            },
            "payment_tx": {
              "description": "Optional: the transaction you paid the other agent with; verified on-chain and bound to the receipt",
              "pattern": "^0x[0-9a-fA-F]{64}$",
              "type": "string"
            },
            "reference": {
              "description": "Optional order id or transaction hash to record on the receipt",
              "maxLength": 200,
              "type": "string"
            },
            "task": {
              "description": "The task you gave the other agent or service, including every requirement",
              "minLength": 1,
              "type": "string"
            }
          },
          "required": [
            "task",
            "deliverable"
          ],
          "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": {
            "job_id": {
              "type": "string"
            },
            "receipt": {
              "description": "Ed25519-signed receipt: body (canonical JSON), hash (sha256 hex), sig (base64url)",
              "properties": {
                "body": {
                  "type": "object"
                },
                "hash": {
                  "type": "string"
                },
                "sig": {
                  "type": "string"
                }
              },
              "type": "object"
            },
            "result_token": {
              "type": "string"
            },
            "result_url": {
              "type": "string"
            },
            "retry_after_seconds": {
              "type": "integer"
            },
            "status": {
              "enum": [
                "done",
                "pending",
                "unserved",
                "rejected"
              ],
              "type": "string"
            },
            "verdict": {
              "properties": {
                "accept": {
                  "description": "True only when every requirement is met",
                  "type": "boolean"
                },
                "decision": {
                  "description": "verify_externally: nothing is wrong except requirements the text alone cannot confirm",
                  "enum": [
                    "accept",
                    "reject",
                    "verify_externally"
                  ],
                  "type": "string"
                },
                "injection_suspected": {
                  "type": "boolean"
                },
                "requirements": {
                  "items": {
                    "properties": {
                      "blocking": {
                        "description": "This requirement alone is enough to reject",
                        "type": "boolean"
                      },
                      "evidence": {
                        "type": "string"
                      },
                      "met": {
                        "enum": [
                          "yes",
                          "no",
                          "partly",
                          "cannot_tell"
                        ],
                        "type": "string"
                      },
                      "requirement": {
                        "type": "string"
                      },
                      "subjective": {
                        "type": "boolean"
                      }
                    },
                    "required": [
                      "requirement",
                      "met",
                      "evidence",
                      "subjective",
                      "blocking"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "summary": {
                  "type": "string"
                }
              },
              "required": [
                "accept",
                "summary",
                "requirements",
                "injection_suspected"
              ],
              "type": "object"
            }
          },
          "required": [
            "job_id",
            "status"
          ],
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON