Livecheck Confirm — use after your agent submits a lead/contact form (intent=lea
Livecheck Confirm — use after your agent submits a lead/contact form (intent=lead_submit): POST {url, intent} where url is the thank-you or result page. Returns confirmed|failed|unknown with Level-2+ evidence (confirmation/ref/ticket id required for confirmed). Independent cookieless verifier — actor ≠ verifier — so you do not grade your own homework before the next paid or irreversible step. Not URL/stock liveness (use /v1/verify), not payment/tx settlement, not a thank-you-page classifier.
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://livecheck.fly.dev/v1/confirm
| Category | Market data |
|---|---|
| Provider host | livecheck.fly.dev |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 5 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": {
"intent": "lead_submit",
"url": "https://example.com/thank-you?ref=ABC123"
},
"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": "Optional. Ignored in v0.",
"type": "object"
},
"intent": {
"description": "Day-1 Confirm intent. Only lead_submit is accepted.",
"enum": [
"lead_submit"
],
"type": "string"
},
"url": {
"description": "Absolute http(s) URL of the thank-you or result page to confirm independently.",
"type": "string"
}
},
"required": [
"url",
"intent"
]
},
"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": {
"canonical_url": {
"type": "string"
},
"effect": {
"properties": {
"id": {
"type": "string"
},
"type": {
"enum": [
"lead_submit"
],
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
"evidence_id": {
"type": "string"
},
"evidence_strength": {
"enum": [
1,
2
],
"type": "number"
},
"fetched_at": {
"type": "string"
},
"http_status": {
"type": "number"
},
"independent_evidence": {
"type": "boolean"
},
"independent_signals": {
"type": "number"
},
"price_usd": {
"type": "number"
},
"signals": {
"items": {
"type": "string"
},
"type": "array"
},
"url": {
"type": "string"
},
"verdict": {
"enum": [
"confirmed",
"failed",
"unknown"
],
"type": "string"
}
},
"required": [
"verdict",
"effect",
"evidence_strength",
"signals",
"independent_signals",
"independent_evidence",
"evidence_id",
"http_status",
"fetched_at",
"url",
"canonical_url",
"price_usd"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}