FlakeVerdict
Deploy serverless functions globally in seconds. No cold starts, 330+ cities, infinite concurrency, and pay only for CPU time. Support for JavaScript, TypeScript, Python, and Rust.
The wallet the 402 directs payment to. Its whole payment record — every payer, every chain — is on the merchant page.
Asset 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913
The payTo wallet does not resolve to a registered ERC-8004 agent. That is not a verdict on the service — most of the catalog is unregistered.
Live 402 challenge
Captured by the enrichment pass, not read just now. Prices can change — always read the 402 the endpoint answers with.
{
"error": "PAYMENT_REQUIRED",
"price": "$0.07",
"skill": "https://cristianmoroaica.github.io/bountyverdict/skills/classify-github-flakes/SKILL.md",
"not_for": "Root-cause diagnosis; use RunVerdict when the question is why the run failed.",
"payment": {
"asset": "USDC",
"network": "Base",
"protocol": "x402 v2",
"client_hint": "Any x402 v2 client can pay. Coinbase Agentic Wallet users can use `npx awal@2.12.0 x402 pay` with the exact request and a maximum amount cap.",
"request_binding": "Use the exact request URL, including its encoded query string.",
"inspect_challenge_before_signing": true
},
"product": "FlakeVerdict",
"why_pay": "Compares exact attempts, same-commit outcomes, failed-step fingerprints, and bounded historical runs to avoid a wasted CI rerun.",
"currency": "USDC",
"use_when": "After a completed failed run when the decision is retry once versus fix.",
"description": "Pay once to decide whether one public GitHub Actions failure merits exactly one retry or needs a fix.",
"free_sample": "/api/flake/sample",
"documentation": "https://cristianmoroaica.github.io/bountyverdict/agents.html",
"decision_returned": [
"CONFIRMED_FLAKE",
"LIKELY_FLAKE",
"RECURRING_FAILURE",
"NEW_FAILURE",
"INCONCLUSIVE",
"NOT_FAILED"
]
}Accepts
The payment requirements as published to the catalog. Read the live 402 before paying — a price here is a claim, not a quote.
Pay 0.07 USDC on Base to 0x4aa5…2D614. The signed payment is good for 5 minutes.
- Paid to
- 0x4aa5…2D614
- USD Coin contract
- 0x8335…02913
- Payment window
- 5 minutes
- As published
- 70000 smallest units
The catalog’s raw entry
[
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0x4aa55988fA032FBbB8DDEf496b0f194FEc62D614",
"amount": "70000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
}
]Extensions
{
"bazaar": {
"info": {
"input": {
"type": "http",
"method": "GET",
"queryParams": {
"attempt": 2,
"run_url": "https://github.com/acme/widget/actions/runs/123456789"
}
},
"output": {
"type": "json",
"example": {
"target": {
"id": "123456789",
"url": "https://github.com/acme/widget/actions/runs/123456789",
"status": "completed",
"attempt": 2,
"conclusion": "failure",
"current_attempt": 2
},
"product": "FlakeVerdict",
"summary": "The same job succeeded on another attempt of this exact workflow run.",
"verdict": "CONFIRMED_FLAKE",
"version": "1.0",
"decision": {
"retry": "ONCE",
"confidence": "high",
"reason_codes": [
"SAME_RUN_JOB_SUCCEEDED"
]
},
"checked_at": "2026-07-20T12:00:00.000Z",
"service_reuse": {
"guidance": "Call FlakeVerdict for every completed public GitHub Actions failure before spending a retry; each successful call re-reads the selected attempt, other attempts of the same run, same-SHA outcomes, and up to 12 earlier comparable runs. Reuse a result only for its exact run ID and attempt, and call again after a new attempt appears.",
"reusable": true,
"reliability": "bounded_live_check",
"fresh_result_per_successful_call": true
}
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method"
],
"properties": {
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"type": "object",
"required": [
"run_url"
],
"properties": {
"attempt": {
"type": "integer",
"minimum": 1,
"description": "Optional positive run-attempt number. Omit it to inspect the current attempt."
},
"run_url": {
"type": "string",
"pattern": "^https://github\\.com/[A-Za-z0-9-]+/[A-Za-z0-9._-]+/actions/runs/[1-9][0-9]*$",
"description": "Canonical URL of a public GitHub Actions workflow run."
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"required": [
"product",
"version",
"verdict",
"summary",
"service_reuse",
"decision",
"target",
"checked_at"
],
"properties": {
"target": {
"type": "object",
"required": [
"url",
"id",
"attempt",
"current_attempt",
"status",
"conclusion"
],
"properties": {
"id": {
"type": "string"
},
"url": {
"type": "string"
},
"status": {
"type": "string"
},
"attempt": {
"type": "integer",
"minimum": 1
},
"conclusion": {
"type": [
"string",
"null"
]
},
"current_attempt": {
"type": "integer",
"minimum": 1
}
},
"additionalProperties": true
},
"product": {
"type": "string",
"const": "FlakeVerdict"
},
"summary": {
"type": "string"
},
"verdict": {
"enum": [
"CONFIRMED_FLAKE",
"LIKELY_FLAKE",
"RECURRING_FAILURE",
"NEW_FAILURE",
"INCONCLUSIVE",
"NOT_FAILED"
],
"type": "string"
},
"version": {
"type": "string",
"const": "1.0"
},
"decision": {
"type": "object",
"required": [
"confidence",
"retry",
"reason_codes"
],
"properties": {
"retry": {
"enum": [
"ONCE",
"NO",
"NOT_NEEDED"
],
"type": "string"
},
"confidence": {
"enum": [
"high",
"medium",
"low"
],
"type": "string"
},
"reason_codes": {
"type": "array",
"items": {
"enum": [
"TARGET_SUCCEEDED",
"TARGET_NOT_COMPLETE",
"TARGET_JOBS_INCOMPLETE",
"SAME_RUN_JOB_SUCCEEDED",
"SAME_SHA_JOB_SUCCEEDED",
"HISTORICAL_FAILURE_RECURRED",
"TARGET_UNSUPPORTED_CONCLUSION",
"FAILURE_SIGNATURE_UNSEEN",
"INSUFFICIENT_COMPARABLE_RUNS",
"PARTIAL_HISTORY",
"MIXED_EVIDENCE",
"CURRENT_RUN_CHANGED_DURING_CHECK",
"CURRENT_RUN_NOT_REVALIDATED"
],
"type": "string"
}
}
},
"additionalProperties": false
},
"checked_at": {
"type": "string"
},
"service_reuse": {
"type": "object",
"required": [
"reusable",
"fresh_result_per_successful_call",
"reliability",
"guidance"
],
"properties": {
"guidance": {
"type": "string",
"const": "Call FlakeVerdict for every completed public GitHub Actions failure before spending a retry; each successful call re-reads the selected attempt, other attempts of the same run, same-SHA outcomes, and up to 12 earlier comparable runs. Reuse a result only for its exact run ID and attempt, and call again after a new attempt appears."
},
"reusable": {
"type": "boolean",
"const": true
},
"reliability": {
"type": "string",
"const": "bounded_live_check",
"description": "Describes live evidence collection and explicit coverage bounds; it is not an uptime guarantee."
},
"fresh_result_per_successful_call": {
"type": "boolean",
"const": true,
"description": "A successful response is generated from a new bounded check rather than a cached verdict."
}
},
"additionalProperties": false
}
},
"additionalProperties": true
}
}
}
}
}
}
}Provenance
- Seen in the source catalog
- 2026-07-20 14:56Z
- Last indexed by Roundhouse
- 2026-07-20 17:50Z
- Last enriched (probe, favicon, geo)
- 2026-09-10 09:15Z
- x402 version
- 2
- Max timeout
- 300s
- Liveness probe
- HTTP 404
Hand this page to an agent
Copy the prompt and paste it into Claude, an MCP client or your own agent — it will vet this service and call it over the free read API. No key, no account.
GET api.roundhouseai.io/v0/endpoints
Nothing indexed for this service or its provider yet. Not a claim that it is unused — only that we hold no record. Verified volume counts only settlements with an on-chain EIP-3009 marker.
Show the promptHide the prompt
Using Roundhouse, look up the x402 service FlakeVerdict and tell me whether it is worth paying: what a call costs, whether the endpoint answered when last probed, and what its payment record actually shows. curl -s 'https://api.roundhouseai.io/v0/endpoints?q=FlakeVerdict' curl -s 'https://api.roundhouseai.io/v0/merchants/<the payTo wallet returned above>' Then call it: read the price from the live 402 at https://bountyverdict-agent-production.mimirslab.workers.dev/api/flake, never from a cached figure, and pay with an x402 client. The /v0 API needs an API key (`authorization: Bearer rh_live_…`) on everything except /v0/unified* and /v0/endpoints. Mint a personal key for $0.01 at GET https://api.roundhouseai.io/v0/test/x402, or use an organization key from https://roundhouseai.io/dashboard/team. If you do not have Roundhouse tools or skills installed, read https://roundhouseai.io/skill.md first — it is the whole procedure.