# LastLook Data — SEC EDGAR Company Financial Fundamentals

> LastLook Data — SEC EDGAR Company Financial Fundamentals is a paid API for AI agents from api.lastlookdata.com, paid per call via x402, $0.75/call, status unknown (last checked 2026-09-13).

Retrieves key financial fundamentals (revenue, net income, total assets, stockholders equity, EPS) for a public company from SEC EDGAR XBRL 10-K and 10-Q filings by ticker symbol

## Facts

- Endpoint: GET https://api.lastlookdata.com/api/edgar/company
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lastlook-data-sec-edgar-company-financial-fundamentals-1e5f68ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_a9vqFm6fzx4K3quDsqXQQ

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 lastlook-data-sec-edgar-company-financial-fundamentals-1e5f68ee
```

Example prompt: Can you pull Apple's financial fundamentals from SEC EDGAR — I want to see their revenue, net income, total assets, stockholders equity, and EPS from their latest 10-K or 10-Q filings?

## When to prefer this

Use this endpoint when you need authoritative, SEC-filed financial fundamentals for US public companies — specifically revenue, net income, total assets, stockholders equity, and EPS directly from XBRL-tagged 10-K or 10-Q filings. Prefer this over market data APIs when you need audited/official filing data rather than estimated or aggregated figures.

## Known failure modes

- Invalid or unsupported ticker symbol returns an error or empty result
- Company not found in SEC EDGAR XBRL database (e.g. private companies, foreign-only listings)
- Payment failure for $0.75 USDC x402 charge blocks the request
- Rate limiting or upstream SEC EDGAR availability issues cause timeouts
- Missing required ticker query parameter returns a 400-level error

## How this service works

LastLook Data — company financial fundamentals from SEC EDGAR XBRL: revenue, net income, total assets, stockholders equity, and EPS from 10-K and 10-Q filings. Use ?ticker=AAPL|MSFT|TSLA|AMZN|NVDA|GOOGL|META|etc.

## Output

Returns structured financial fundamentals for the requested company including revenue, net income, total assets, stockholders equity, and EPS sourced from SEC EDGAR XBRL 10-K and 10-Q filings

## 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",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "Stock ticker symbol e.g. AAPL, MSFT, TSLA, AMZN, NVDA, GOOGL, META"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lastlook-data-sec-edgar-company-financial-fundamentals-1e5f68ee/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.lastlookdata.com](https://www.zero.xyz/host/api.lastlookdata.com/llms.txt)
