{"openapi":"3.1.0","info":{"title":"SEC Filing Proof","version":"1.0.0","description":"Verify whether an official SEC filing supports a financial claim. Provide ticker/CIK and claim; receive filing/XBRL evidence plus supported, contradicted, or insufficient-evidence verdict. 10-Q / 10-K / XBRL fact verification. Not a data feed, stock picker, or investment advice."},"servers":[{"url":"https://sec-filing-proof.mattskowronis.workers.dev"}],"paths":{"/health":{"get":{"summary":"Health","responses":{"200":{"description":"ok"}}}},"/openapi.json":{"get":{"summary":"OpenAPI","responses":{"200":{"description":"schema"}}}},"/.well-known/agent-card.json":{"get":{"summary":"A2A Agent Card","responses":{"200":{"description":"card"}}}},"/v1/verify":{"post":{"summary":"Verify one financial claim against official SEC filing / XBRL evidence","x-402":{"price":"$0.05","network":"eip155:8453"},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"required":["claim"],"properties":{"ticker":{"type":"string","maxLength":12,"description":"Issuer ticker symbol. Provide ticker or CIK."},"cik":{"type":"string","maxLength":10,"description":"SEC Central Index Key. Provide ticker or CIK."},"claim":{"type":"string","minLength":3,"maxLength":500,"description":"One atomic financial claim to check against official SEC filings."},"filing_type":{"type":"string","description":"Optional filing hint such as 10-Q or 10-K."},"period":{"type":"string","description":"Optional period hint such as latest quarter or FY2025."},"fiscal_year":{"type":"integer","description":"Optional fiscal year."},"fiscal_quarter":{"type":"string","description":"Optional fiscal quarter such as Q1."}}},"example":{"ticker":"AAPL","claim":"Revenue increased year over year in the latest reported quarter."}}}},"responses":{"200":{"description":"Filing-backed claim evaluation","content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"required":["verdict","source_status","company","ticker","cik","filing_type","filing_date","period","period_start","period_end","claim","evidence","source_urls","reasoning_summary","retrieved_at","service_version"],"properties":{"verdict":{"type":"string","enum":["supported","contradicted","insufficient_evidence","ambiguous_period","ambiguous_concept"]},"source_status":{"type":"string","enum":["verified","company_not_found","filing_not_found","sec_unavailable","unsupported_claim_type"]},"company":{"type":["string","null"]},"ticker":{"type":["string","null"]},"cik":{"type":["string","null"]},"filing_type":{"type":["string","null"]},"filing_date":{"type":["string","null"]},"period":{"type":["string","null"]},"period_start":{"type":["string","null"]},"period_end":{"type":["string","null"]},"claim":{"type":"string"},"evidence":{"type":"array","maxItems":4,"items":{"type":"object","additionalProperties":false,"required":["concept","label","value","unit","normalized_value","period_start","period_end","filing","accession","source_url","polarity"],"properties":{"concept":{"type":"string"},"label":{"type":["string","null"]},"value":{"type":"number"},"unit":{"type":"string"},"normalized_value":{"type":["number","null"]},"period_start":{"type":["string","null"]},"period_end":{"type":["string","null"]},"filing":{"type":["string","null"]},"accession":{"type":["string","null"]},"source_url":{"type":["string","null"]},"polarity":{"type":"string","enum":["supports","contradicts","neutral"]}}}},"source_urls":{"type":"array","items":{"type":"string"}},"reasoning_summary":{"type":"string","maxLength":400},"retrieved_at":{"type":"string"},"service_version":{"type":"string"}}},"example":{"verdict":"supported","source_status":"verified","company":"Apple Inc.","ticker":"AAPL","cik":"0000320193","filing_type":"10-Q","filing_date":"2026-01-30","period":"latest_quarter","period_start":"2025-09-28","period_end":"2025-12-27","claim":"Revenue increased year over year in the latest reported quarter.","evidence":[{"concept":"RevenueFromContractWithCustomerExcludingAssessedTax","label":"Revenue from Contract with Customer, Excluding Assessed Tax","value":100000000000,"unit":"USD","normalized_value":100000000000,"period_start":"2025-09-28","period_end":"2025-12-27","filing":"10-Q","accession":"0000320193-26-000006","source_url":"https://www.sec.gov/Archives/edgar/data/320193/000032019326000006/0000320193-26-000006-index.htm","polarity":"supports"}],"source_urls":["https://www.sec.gov/Archives/edgar/data/320193/000032019326000006/0000320193-26-000006-index.htm","https://data.sec.gov/api/xbrl/companyfacts/CIK0000320193.json"],"reasoning_summary":"Latest quarterly revenue exceeded the comparable prior-year quarter in official XBRL facts.","retrieved_at":"2026-08-19T13:00:00.000Z","service_version":"1.0.0"}}}},"400":{"description":"Invalid request"},"402":{"description":"Payment required"}}}}}}