Settlement evidence v0 for prediction-market and dispute workflows: did an issuer file a g
Settlement evidence v0 for prediction-market and dispute workflows: did an issuer file a given SEC EDGAR form before your cutoff? Returns THREE SEPARATED TIMES (event / disclosure / cutoff), a resolution_status of resolved, no_authoritative_source, ambiguous or conflicting, and candidate_sources. We describe the filing record; we never adjudicate the real-world event. Descriptive only, never a forecast or advice. No data -> 422 no_charge, not billed. $0.09 per call.
90000 (raw units)
price
22
calls / 30d
2
unique payers
2026-09-07
updated
Provider
api.truthbear.co · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x2d16a243ba9facc6ac85519d5efad2149dc4c6c3",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "90000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "8qEn3Y3GPXdQ28LHshPa4UYeD8V38Lq9b4jCRirQAY3n",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "90000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"discoverable": true,
"info": {
"input": {
"example": {
"cutoff": "2025-01-01",
"entity": "AAPL",
"form": "10-K"
},
"exampleRequest": "/resolve?entity=AAPL&form=10-K&cutoff=2025-01-01",
"method": "GET",
"queryParams": {
"cutoff": "required - settlement cutoff, ISO 8601 (e.g. 2026-07-31 or 2026-07-31T23:59:59Z)",
"entity": "required - ticker or CIK (e.g. AAPL or 320193)",
"event_class": "optional - 8-K item (e.g. 1.03 bankruptcy)",
"form": "required - filing type (e.g. 10-K, 8-K, NT 10-K, SC 13D, 4)",
"market_or_event": "optional - market/event label, echoed back verbatim",
"source_class": "optional - defaults to sec-edgar (the only source in v0)"
},
"type": "http"
},
"output": {
"type": "json"
}
},
"outputSchemaRef": "/manifest",
"priceUsd": "$0.09",
"priceUsdNumber": 0.09,
"routeTemplate": "/resolve",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"cutoff": {
"description": "required - settlement cutoff, ISO 8601 (e.g. 2026-07-31 or 2026-07-31T23:59:59Z)",
"examples": [
"2025-01-01"
],
"type": "string"
},
"entity": {
"description": "required - ticker or CIK (e.g. AAPL or 320193)",
"examples": [
"AAPL"
],
"type": "string"
},
"event_class": {
"description": "optional - 8-K item (e.g. 1.03 bankruptcy)",
"type": "string"
},
"form": {
"description": "required - filing type (e.g. 10-K, 8-K, NT 10-K, SC 13D, 4)",
"examples": [
"10-K"
],
"type": "string"
},
"market_or_event": {
"description": "optional - market/event label, echoed back verbatim",
"type": "string"
},
"source_class": {
"description": "optional - defaults to sec-edgar (the only source in v0)",
"type": "string"
}
},
"required": [
"entity",
"form",
"cutoff"
],
"type": "object"
},
"type": {
"const": "http"
}
},
"required": [
"type",
"method",
"queryParams"
],
"type": "object"
},
"output": {
"properties": {
"type": {
"const": "json"
}
},
"required": [
"type"
],
"type": "object"
}
}
}
}
}Use it
curl
curl "https://api.truthbear.co/resolve" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.truthbear.co/resolve");
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://api.truthbear.co/resolve")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4404.json, and this resource appears in /discovery/resources and /discovery/search.