$0.002
per call · USD Coin on Base
Redirect tier (deterministic, no LLM): verifies where a public URL actually leads: final URL (byte-exact), first response status, and hop count of the HTTP chain, walked twice with per-hop SSRF checks. Use it to confirm a link or a moved page points where it claims. Loops and unstable chains return unverifiable, never a guess. First 100 checks per client are free: resend with header X-Use-Free-Allowance: yes and no payment to use them.
Endpoint
POST https://scrapecheck.fly.dev/verify-redirect2
Calls / 30d
2
Unique payers / 30d
Aug 30
Last called
exact
Payment scheme
Call this service
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";
const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);
const res = await fetchWithPay("https://scrapecheck.fly.dev/verify-redirect", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"claim": {
"final_url": "https://scrapecheck.fly.dev/price-mismatch-checker",
"first_status": 301,
"hops": 1
},
"url": "https://scrapecheck.fly.dev/audit"
}),
});
const data = await res.json();curl -X POST \
"https://scrapecheck.fly.dev/verify-redirect" \
-H "Content-Type: application/json" \
-d '{"claim":{"final_url":"https://scrapecheck.fly.dev/price-mismatch-checker","first_status":301,"hops":1},"url":"https://scrapecheck.fly.dev/audit"}' \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"check_type": "redirect_chain_v1",
"confidence": 0.95,
"engine": "web_field_v1/0.2.0+2ae28205cac4",
"evidence": {
"lens_votes": {},
"refetch_excerpt": "301 https://scrapecheck.fly.dev/audit -> 200 https://scrapecheck.fly.dev/price-mismatch-checker",
"refetched_at": "2026-08-28T00:00:00.000Z",
"second_fetch_at": "2026-08-28T00:00:01.000Z"
},
"key_id": "k2",
"reasons": [
"the chain settles at the claimed final URL (byte-exact)",
"first response status is 301 as claimed",
"the chain has 1 redirect hop(s) as claimed"
],
"signature": "ed25519:…",
"source_hash": "sha256:…",
"verdict": "pass",
"verdict_id": "00000000-0000-0000-0000-000000000000",
"verifier_url": "https://scrapecheck.fly.dev"
}Payment details
0x455f20ec147477cafcd6d77c1604529f3c4ff665USD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of Search & Web and the homepage with a featured placement.
More from ScrapeCheck & similar services
ScrapeCheck · Verify
scrapecheck.fly.dev
Checks whether a value you did not fetch yourself is actually on the page it came from. Independently re-fetches the source and returns a signed pass/fail/unverifiable verdict. A claim is never certified unless the re-fetched page contains it, and anything unconfirmed is unverifiable, never pass. Server-rendered pages only. $0.01 per check. First 100 checks per client are free: resend this exact request with header X-Use-Free-Allowance: yes and no payment to use them.
ScrapeCheck · Verify Presence
scrapecheck.fly.dev
PRESENCE tier (deterministic, no LLM): confirms the claimed value appears on the live page — it does NOT confirm the value is the right answer to the question. Positive verdict is "present", never "pass"; check_type web_field_presence_v1. For full verification use /verify. First 100 checks per client are free: resend with header X-Use-Free-Allowance: yes and no payment to use them.
ScrapeCheck · Verify Hash
scrapecheck.fly.dev
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.