Skip to content
Back to SEC Filing Proof

Card snapshot

sec-filing-proof.mattskowronis.workers.dev · 2026-08-19 23:18:49 UTC · af7ed7df953aa0417a7ccdded8f8126824f00735906ec56269761ed6552a28a3

This is a frozen copy of the agent's agent-card.json as we observed it at the timestamp above. We capture a new snapshot every time the card's content hash changes. Useful for: forensic drift analysis, verifying downstream callers see the right version, reproducing routing decisions made historically.

{
  "protocolVersion": "1.0",
  "name": "SEC Filing Proof",
  "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.",
  "url": "https://sec-filing-proof.mattskowronis.workers.dev/a2a",
  "preferredTransport": "JSONRPC",
  "additionalInterfaces": [
    {
      "url": "https://sec-filing-proof.mattskowronis.workers.dev/a2a",
      "transport": "JSONRPC"
    },
    {
      "url": "https://sec-filing-proof.mattskowronis.workers.dev/v1/verify",
      "transport": "HTTP+JSON"
    }
  ],
  "provider": {
    "organization": "Matthew Skowron",
    "url": "https://sec-filing-proof.mattskowronis.workers.dev"
  },
  "version": "1.0.0",
  "documentationUrl": "https://sec-filing-proof.mattskowronis.workers.dev/openapi.json",
  "defaultInputModes": [
    "application/json"
  ],
  "defaultOutputModes": [
    "application/json"
  ],
  "skills": [
    {
      "id": "verify_sec_filing_claim",
      "name": "Verify SEC Filing Claim",
      "description": "Check whether a company's official SEC filing supports a specific financial claim. Uses ticker or CIK plus claim; returns filing/XBRL evidence and a supported, contradicted, or insufficient-evidence verdict. 10-Q claim verification, 10-K fact verification, earnings claim check, XBRL fact verification.",
      "tags": [
        "sec-filing-evidence",
        "financial-claim-verification",
        "xbrl-verification",
        "10-q-verification",
        "10-k-verification",
        "earnings-fact-check"
      ],
      "examples": [
        "Does AAPL revenue increase year over year in the latest 10-Q?",
        "Verify MSFT operating income increased in the latest reported quarter.",
        "Check whether AAPL generated positive operating cash flow in the latest fiscal year."
      ]
    }
  ],
  "securitySchemes": {
    "x402": {
      "type": "apiKey",
      "in": "header",
      "name": "PAYMENT-SIGNATURE",
      "description": "x402 exact scheme, $0.05 USDC on eip155:8453"
    }
  },
  "security": [
    {
      "x402": []
    }
  ],
  "protocol": "x402",
  "x402Version": 2,
  "environment": "production",
  "payment": {
    "method": "POST",
    "path": "/v1/verify",
    "scheme": "exact",
    "price": "$0.05",
    "network": "eip155:8453",
    "asset": "USDC",
    "payTo": "0x22B3D4485C8Dcd8FC4840a7570664747c9055530"
  },
  "input_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."
      }
    }
  },
  "output_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"
      }
    }
  },
  "input_example": {
    "ticker": "AAPL",
    "claim": "Revenue increased year over year in the latest reported quarter."
  },
  "output_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"
  },
  "network": "eip155:8453",
  "listed_price": "$0.05"
}