# FilingsPulse Quarterly Fundamentals (SEC XBRL)

> FilingsPulse Quarterly Fundamentals (SEC XBRL) is a paid API for AI agents from filingspulse.theaslangroupllc.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns eight quarters of reported revenue, net income, and diluted EPS for any US public company directly from SEC XBRL data, with computed YoY changes and XBRL tag references.

## Facts

- Endpoint: GET https://filingspulse.theaslangroupllc.com/api/filings/quarterly
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/filingspulse-quarterly-fundamentals-sec-xbrl-95a33265
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ApfJoNTYGcJmSWPdS_z_A

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 filingspulse-quarterly-fundamentals-sec-xbrl-95a33265
```

Example prompt: Pull the last 8 quarters of revenue, net income, and diluted EPS for NVIDIA straight from SEC XBRL — I want the actual reported numbers with year-over-year changes so I can see if net income is growing.

## When to prefer this

Use this endpoint when you need verbatim SEC-reported quarterly financials (revenue, net income, EPS) with no modeling or LLM interpretation, and you want YoY trend context across 8 quarters. Prefer this over general financial data APIs when XBRL provenance and exact SEC-reported figures are required, or when you need the specific XBRL concept tag for auditability. Not suited for balance sheet, cash flow, or non-US companies.

## Known failure modes

- Unknown ticker or company name — returns error if identifier cannot be resolved to a CIK
- Company has no XBRL data on SEC EDGAR (e.g. foreign private issuers not filing on EDGAR)
- Fewer than 8 quarters available for recently-listed companies — returns fewer periods than requested
- XBRL tag inconsistency across periods if company changed reporting taxonomy
- Rate limiting or payment failure via x402 protocol returns 402 status

## How this service works

Eight quarters of a US public company's reported fundamentals, straight from SEC XBRL. Answers "Apple revenue last 8 quarters", "is NVDA net income growing", "MSFT EPS trend". Revenue, net income, diluted EPS per quarter with computed YoY changes and the exact XBRL tag used — every number verbatim from data.sec.gov companyfacts, nothing modeled. Accepts ticker, company name, or CIK. No LLM, no key.

## Output

Eight quarters of revenue, net income, and diluted EPS as reported in SEC XBRL filings, with computed YoY percentage changes for each metric, the exact XBRL concept tag used, and the fiscal period label — all sourced verbatim from data.sec.gov CompanyFacts with no modeling or estimation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "company"
 ],
 "properties": {
  "company": {
   "type": "string",
   "description": "Ticker, company name, or CIK"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "company": {
   "cik": "0000320193",
   "name": "Apple Inc.",
   "ticker": "AAPL"
  },
  "quarters": [
   {
    "fiscal": "FY2026 Q2",
    "revenue": 111184000000,
    "net_income": 29578000000,
    "period_end": "2026-03-28",
    "eps_diluted": 2.01,
    "revenue_yoy_pct": 16.6
   }
  ],
  "deterministic": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/filingspulse-quarterly-fundamentals-sec-xbrl-95a33265/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from filingspulse.theaslangroupllc.com](https://www.zero.xyz/host/filingspulse.theaslangroupllc.com/llms.txt)
