# agent402.tools Company Financials

> agent402.tools Company Financials is a paid API for AI agents from agent402.tools, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns key financial metrics (Revenue, Net Income, EPS, Assets, Liabilities, Equity, Operating Cash Flow) for a US public company from SEC XBRL filings, including latest annual and quarterly values

## Facts

- Endpoint: GET https://agent402.tools/api/company-financials
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-tools-company-financials-1abb455d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PrC1aN7A6lGmcozs2mSGn

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 agent402-tools-company-financials-1abb455d
```

Example prompt: Pull the key financials for AAPL — revenue, net income, EPS, total assets, liabilities, equity, and operating cash flow — from the latest SEC filings, both annual and quarterly.

## When to prefer this

Use this endpoint when you need fundamental financial metrics for a US-listed public company sourced directly from SEC XBRL filings, without needing to parse raw EDGAR data yourself. Prefer this over market data APIs when you need balance sheet, income statement, and cash flow data in a single call. Best for fundamental analysis, screening, or financial reporting tasks where official SEC-sourced data is required.

## Known failure modes

- Unknown ticker or CIK returns a 404 or empty result
- Non-US companies not listed on SEC EDGAR will not be found
- Very recently listed companies may lack XBRL filing history
- CIK and ticker mismatch may return wrong company data
- SEC EDGAR outage or rate limiting may cause upstream failures

## How this service works

Key financial metrics (Revenue, Net Income, Operating Income, Total Assets, Liabilities, Equity, EPS, Operating Cash Flow) for a US public company in one call. Returns the latest annual and quarterly values from SEC XBRL filings. No XBRL knowledge needed - just pass a ticker. ?ticker=AAPL

## Output

A structured response containing 8 key financial metrics (Revenue, Net Income, Operating Income, Total Assets, Liabilities, Equity, EPS, Operating Cash Flow) sourced from SEC XBRL filings, with both the most recent annual and quarterly values for the requested company.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "cik": {
       "type": "string",
       "description": "SEC CIK number (alternative to ticker)"
      },
      "ticker": {
       "type": "string",
       "description": "US stock ticker (alternative to cik)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "ticker",
      "cik",
      "entityName",
      "metrics",
      "source"
     ],
     "properties": {
      "cik": {
       "type": "string"
      },
      "source": {
       "type": "string"
      },
      "ticker": {
       "type": "string"
      },
      "metrics": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "tag": {
          "type": "string"
         },
         "label": {
          "type": "string"
         },
         "latestAnnual": {
          "type": "object"
         },
         "latestQuarterly": {
          "type": "object"
         }
        }
       }
      },
      "entityName": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cik": "0000320193",
  "source": "SEC EDGAR XBRL (public domain)",
  "ticker": "AAPL",
  "metrics": [
   {
    "tag": "Revenues",
    "label": "Revenue",
    "latestAnnual": {
     "form": "10-K",
     "value": 391035000000,
     "period": "2024-09-28"
    },
    "latestQuarterly": {
     "form": "10-Q",
     "value": 94930000000,
     "period": "2025-03-29"
    }
   },
   {
    "tag": "NetIncomeLoss",
    "label": "Net Income",
    "latestAnnual": {
     "form": "10-K",
     "value": 93736000000,
     "period": "2024-09-28"
    },
    "latestQuarterly": {
     "form": "10-Q",
     "value": 24780000000,
     "period": "2025-03-29"
    }
   }
  ],
  "entityName": "Apple Inc."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-company-financials-1abb455d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
