{
  "x402Version": 2,
  "id": 4305,
  "slug": "4305",
  "resource": "https://sec.use.x402atlas.com/financials/:ticker",
  "description": "SEC company financials by ticker — normalized annual and quarterly revenue, income, balance-sheet, cash-flow and EPS facts.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x8C128f1Ee62Bb5e47867CfbAe2ad89be325Df1b2",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "10000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:137",
      "payTo": "0x8C128f1Ee62Bb5e47867CfbAe2ad89be325Df1b2",
      "asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
      "amount": "10000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:42161",
      "payTo": "0x8C128f1Ee62Bb5e47867CfbAe2ad89be325Df1b2",
      "asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
      "amount": "10000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "category": "finance",
      "info": {
        "input": {
          "method": "GET",
          "pathParams": {
            "ticker": "AAPL"
          },
          "type": "http"
        },
        "output": {
          "example": {
            "cik": 320193,
            "company_name": "Apple Inc.",
            "metrics": [
              {
                "annual": {
                  "accession_number": "0000320193-24-000123",
                  "filed": "2024-11-01",
                  "form": "10-K",
                  "period": {
                    "end": "2024-09-28",
                    "start": "2023-10-01"
                  },
                  "unit": "USD",
                  "value": 391035000000
                },
                "key": "revenues",
                "label": "Revenue from Contract with Customer, Excluding Assessed Tax",
                "quarterly": {
                  "accession_number": "0000320193-25-000008",
                  "filed": "2025-01-31",
                  "form": "10-Q",
                  "period": {
                    "end": "2024-12-28",
                    "start": "2024-09-29"
                  },
                  "unit": "USD",
                  "value": 124300000000
                }
              }
            ],
            "ticker": "AAPL"
          },
          "type": "json"
        }
      },
      "routeTemplate": "/financials/:ticker",
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "method": {
                "enum": [
                  "GET"
                ],
                "type": "string"
              },
              "pathParams": {
                "properties": {
                  "ticker": {
                    "description": "US public-company ticker; case-insensitive",
                    "pattern": "^[A-Za-z0-9][A-Za-z0-9.-]{0,9}$",
                    "type": "string"
                  }
                },
                "required": [
                  "ticker"
                ],
                "type": "object"
              },
              "queryParams": {
                "properties": {},
                "type": "object"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method",
              "pathParams"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "additionalProperties": false,
                "properties": {
                  "cik": {
                    "type": "integer"
                  },
                  "company_name": {
                    "type": "string"
                  },
                  "metrics": {
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "annual": {
                          "additionalProperties": false,
                          "properties": {
                            "accession_number": {
                              "type": "string"
                            },
                            "filed": {
                              "format": "date",
                              "type": "string"
                            },
                            "form": {
                              "type": "string"
                            },
                            "period": {
                              "additionalProperties": false,
                              "properties": {
                                "end": {
                                  "format": "date",
                                  "type": "string"
                                },
                                "start": {
                                  "format": "date",
                                  "type": "string"
                                }
                              },
                              "required": [
                                "end"
                              ],
                              "type": "object"
                            },
                            "unit": {
                              "type": "string"
                            },
                            "value": {
                              "type": "number"
                            }
                          },
                          "required": [
                            "value",
                            "unit",
                            "period",
                            "form",
                            "filed",
                            "accession_number"
                          ],
                          "type": "object"
                        },
                        "key": {
                          "type": "string"
                        },
                        "label": {
                          "type": "string"
                        },
                        "quarterly": {
                          "additionalProperties": false,
                          "properties": {
                            "accession_number": {
                              "type": "string"
                            },
                            "filed": {
                              "format": "date",
                              "type": "string"
                            },
                            "form": {
                              "type": "string"
                            },
                            "period": {
                              "additionalProperties": false,
                              "properties": {
                                "end": {
                                  "format": "date",
                                  "type": "string"
                                },
                                "start": {
                                  "format": "date",
                                  "type": "string"
                                }
                              },
                              "required": [
                                "end"
                              ],
                              "type": "object"
                            },
                            "unit": {
                              "type": "string"
                            },
                            "value": {
                              "type": "number"
                            }
                          },
                          "required": [
                            "value",
                            "unit",
                            "period",
                            "form",
                            "filed",
                            "accession_number"
                          ],
                          "type": "object"
                        }
                      },
                      "required": [
                        "key",
                        "label"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "note": {
                    "type": "string"
                  },
                  "ticker": {
                    "type": "string"
                  }
                },
                "required": [
                  "ticker",
                  "metrics"
                ],
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      },
      "tags": [
        "sec",
        "edgar",
        "financials",
        "xbrl",
        "revenue",
        "earnings",
        "stocks"
      ]
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "sec.use.x402atlas.com",
  "lastUpdated": "2026-09-15T06:32:05.306Z",
  "quality": {
    "calls30d": 2,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-15T06:32:05.155Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "sec.use.x402atlas.com",
    "manifest_name": "sec.use.x402atlas.com",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}