ToolAssay

Checksum tier (deterministic, no LLM)

Checksum tier (deterministic, no LLM): verifies the exact bytes served at a public URL hash to a claimed sha256, by independent double re-fetch. Use it to confirm a download or artifact matches its published checksum. Bodies up to 3 MB; dynamic pages return unverifiable, never a guess. sha256 only. First 100 checks per client are free: resend with header X-Use-Free-Allowance: yes and no payment to use them.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
260 msmedian answer time
$0.002listed price per call
$0.002price 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://scrapecheck.fly.dev/verify-hash

CategoryEverything else
Provider hostscrapecheck.fly.dev
Networkseip155:137, eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
Payment schemesexact
Self-reported calls, 30 days4 from 4 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.002 260 ms

Example input (from the provider)

{
  "body": {
    "claim": {
      "sha256": "92fa12e267971550b3d78a1d5aea6cc20586c66bead4fa89e9952f1604ac9ab0"
    },
    "url": "https://scrapecheck.fly.dev/.well-known/402index-verify.txt"
  },
  "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": {
            "claim": {
              "description": "see the route description; there is no asked field - this tier adjudicates exactly what it accepts",
              "type": "object"
            },
            "url": {
              "description": "public HTTPS URL",
              "type": "string"
            }
          },
          "required": [
            "url",
            "claim"
          ]
        },
        "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": {
            "check_type": {
              "description": "The check contract used, e.g. web_field_v1.",
              "type": "string"
            },
            "confidence": {
              "description": "The engine's confidence in the verdict, 0 to 1.",
              "type": "number"
            },
            "engine": {
              "description": "Engine name and version digest that produced the verdict.",
              "type": "string"
            },
            "evidence": {
              "description": "What the re-fetch observed.",
              "properties": {
                "lens_votes": {
                  "description": "Boolean votes is_real, is_current, does_answer from the judging lenses.",
                  "properties": {
                    "does_answer": {
                      "type": "boolean"
                    },
                    "is_current": {
                      "type": "boolean"
                    },
                    "is_real": {
                      "type": "boolean"
                    }
                  },
                  "type": "object"
                },
                "refetch_excerpt": {
                  "description": "Excerpt of the re-fetched page content the verdict was judged against.",
                  "type": "string"
                },
                "refetched_at": {
                  "description": "UTC timestamp of the engine's own fetch of the page.",
                  "type": "string"
                }
              },
              "type": "object"
            },
            "key_id": {
              "description": "Identifier of the signing key; resolve against GET /pubkey.",
              "type": "string"
            },
            "reasons": {
              "description": "The stated reasons for the verdict.",
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "signature": {
              "description": "ed25519 signature over canonical sorted-key JSON of every field except signature.",
              "type": "string"
            },
            "source_hash": {
              "description": "sha256 of the normalized page text the verdict judged; null when no anchor text was obtained.",
              "type": [
                "string",
                "null"
              ]
            },
            "verdict": {
              "description": "One of pass, fail, unverifiable.",
              "enum": [
                "pass",
                "fail",
                "unverifiable"
              ],
              "type": "string"
            },
            "verdict_id": {
              "description": "Unique identifier for this verdict; its issuance is confirmable at GET /verdicts/{verdict_id}.",
              "type": "string"
            },
            "verifier_url": {
              "description": "The issuing service's URL; display only, never a trust root.",
              "type": "string"
            }
          },
          "required": [
            "verdict_id",
            "verdict",
            "confidence",
            "reasons",
            "evidence",
            "check_type",
            "engine",
            "key_id",
            "verifier_url",
            "source_hash",
            "signature"
          ],
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON