# TruthBear Resolve Proposer

> TruthBear Resolve Proposer is a paid API for AI agents from api.truthbear.co, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Retrieves SEC EDGAR filing facts mapped to a structured answer/timestamp/evidence shape for automated prediction-market settlement proposal and dispute flows

## Facts

- Endpoint: GET https://api.truthbear.co/resolve/proposer
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/truthbear-resolve-proposer-043d15aa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rVL1k6gI7jh7xGYCqTdO2

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability truthbear-resolve-proposer-043d15aa
```

Example prompt: Check whether Apple filed a 10-K with the SEC before January 1, 2025 and give me the structured resolution answer and evidence I need to settle my prediction market — the entity is AAPL, form is 10-K, and the cutoff is 2025-01-01.

## When to prefer this

Choose this endpoint when you need official, machine-readable SEC EDGAR filing evidence specifically shaped for prediction-market settlement proposal or dispute flows — where you need an explicit resolution_status, timestamped answer, and sourced evidence rather than raw filings. Prefer this over generic SEC EDGAR scrapers when you need the proposer/dispute wire format out of the box and want no-charge 422s for missing data instead of billing on empty results.

## Known failure modes

- 422 no_charge returned when no SEC EDGAR data matches the query parameters — not billed
- Invalid or unrecognized ticker/CIK returns an error
- Unsupported or misspelled form type (e.g. typo in '10-K') may return no results
- Cutoff date in wrong format (non-ISO 8601) will fail validation
- Filing exists but postdates the cutoff — resolution_status reflects no qualifying event
- Optional event_class mismatch (e.g. wrong 8-K item code) returns empty result set

## How this service works

Proposer feed for prediction-market settlement: SEC EDGAR official facts mapped to a machine-friendly answer / timestamp / evidence shape for automated proposal and dispute flows. Three separated times, explicit resolution_status, candidate sources listed. We describe what was filed - the adjudication stays yours. Descriptive only, never a forecast or advice. No data -> 422 no_charge, not billed. $0.01 per call.

## Output

A JSON object containing a machine-friendly resolution answer, the relevant timestamp, structured evidence from SEC EDGAR filings, an explicit resolution_status field, and a list of candidate sources. Three time fields are separated for precision. If no data is found for the given parameters, returns a 422 no_charge response (not billed).

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "entity",
      "form",
      "cutoff"
     ],
     "properties": {
      "form": {
       "type": "string",
       "examples": [
        "10-K"
       ],
       "description": "required - filing type (e.g. 10-K, 8-K, NT 10-K, SC 13D, 4)"
      },
      "as_of": {
       "type": "string",
       "description": "optional - alias of cutoff"
      },
      "cutoff": {
       "type": "string",
       "examples": [
        "2025-01-01"
       ],
       "description": "required - settlement cutoff, ISO 8601 (?as_of= is an alias; point-in-time)"
      },
      "entity": {
       "type": "string",
       "examples": [
        "AAPL"
       ],
       "description": "required - ticker or CIK (e.g. AAPL or 320193)"
      },
      "event_class": {
       "type": "string",
       "description": "optional - 8-K item (e.g. 1.03 bankruptcy)"
      },
      "source_class": {
       "type": "string",
       "description": "optional - defaults to sec-edgar"
      },
      "market_or_event": {
       "type": "string",
       "description": "optional - market/event label, echoed back verbatim"
      }
     },
     "additionalProperties": false
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "const": "json"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/truthbear-resolve-proposer-043d15aa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.truthbear.co](https://www.zero.xyz/host/api.truthbear.co/llms.txt)
