# SEC EDGAR XBRL Financial Concept Lookup

> SEC EDGAR XBRL Financial Concept Lookup is a paid API for AI agents from pyfile-agent.taile3ff35.ts.net:10000, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Retrieves a specific XBRL financial concept (e.g. Revenues, NetIncome) for a given company from SEC EDGAR using the company's CIK number

## Facts

- Endpoint: GET https://pyfile-agent.taile3ff35.ts.net:10000/data/sec/financials
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-edgar-xbrl-financial-concept-lookup-573fa9cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lIkM8tS8HP1Nql7mVawJB

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 sec-edgar-xbrl-financial-concept-lookup-573fa9cb
```

Example prompt: Can you pull Apple's revenue figures from SEC EDGAR? Apple's CIK is 320193 and I want the Revenues XBRL concept.

## When to prefer this

Choose this endpoint when you need official, audited XBRL financial data directly from SEC EDGAR for US-listed public companies — particularly for structured time-series financial metrics like revenues, net income, EPS, or total assets. Prefer this over web scraping or data aggregators when regulatory accuracy and traceability to official filings is required. Best suited for financial research, compliance, due diligence, or automated earnings analysis workflows.

## Known failure modes

- Invalid or unknown CIK returns empty or error response
- Concept name does not match EDGAR XBRL taxonomy (case-sensitive, must use exact US-GAAP or IFRS concept name)
- Company may not have filed the requested concept (e.g. small filers, foreign private issuers)
- Network timeout if EDGAR upstream is slow
- Payment failure if USDC balance is insufficient for the $0.003 per-call fee

## How this service works

SEC EDGAR XBRL company financial concept. ?cik=320193&concept=Revenues

## Output

Returns structured XBRL financial concept data from SEC EDGAR including time-series values across fiscal periods, units of measure (e.g. USD, shares), filing dates, accession numbers, and the taxonomy concept label. Data reflects what the company officially reported in SEC 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",
     "properties": {
      "cik": {
       "type": "string"
      },
      "concept": {
       "type": "string"
      }
     }
    }
   }
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-edgar-xbrl-financial-concept-lookup-573fa9cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pyfile-agent.taile3ff35.ts.net:10000](https://www.zero.xyz/host/pyfile-agent.taile3ff35.ts.net%3A10000/llms.txt)
