mirrored listing x402 eip155:8453

Livecheck Confirm — use after your agent submits a lead/contact form (intent=lead_submit):

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.

Do you run livecheck.fly.dev? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
100000 (raw units)
price
5
calls / 30d
1
unique payers
2026-09-08
updated

Provider

livecheck.fly.dev · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x33693228b706cb30f4b4dbf35f79129a763f91c5",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "100000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "intent": "lead_submit",
          "url": "https://example.com/thank-you?ref=ABC123"
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "canonical_url": "https://example.com/thank-you?ref=ABC123",
          "effect": {
            "id": "ABC123",
            "type": "lead_submit"
          },
          "evidence_id": "ev_01example",
          "evidence_strength": 2,
          "fetched_at": "2026-09-06T17:00:00Z",
          "http_status": 200,
          "independent_evidence": true,
          "independent_signals": 1,
          "price_usd": 0.1,
          "signals": [
            "cookieless_fetch",
            "confirmation_id",
            "level_2"
          ],
          "url": "https://example.com/thank-you?ref=ABC123",
          "verdict": "confirmed"
        },
        "type": "json"
      }
    },
    "schema": {
      "$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"
    }
  }
}

Use it

curl

curl "https://livecheck.fly.dev/v1/confirm"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://livecheck.fly.dev/v1/confirm");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://livecheck.fly.dev/v1/confirm")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/12325.json, and this resource appears in /discovery/resources and /discovery/search.