Settlement evidence v0 for prediction-market and dispute workflows
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.
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
GET https://api.truthbear.co/resolve
| Category | Market data |
|---|---|
| Provider host | api.truthbear.co |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 12 from 2 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)
{
"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"
}
Promised output schema (from the provider)
{
"$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"
}
}
}