# 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, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Retrieves a specific financial concept (e.g. Revenues) for a company from the SEC EDGAR XBRL dataset by CIK and concept name

## Facts

- Endpoint: GET https://pyfile-agent.taile3ff35.ts.net/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-630f2a81
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KjypWWfAQikmeCip3iVz_

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-630f2a81
```

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

## When to prefer this

Use this endpoint when you need official, SEC-filed financial data for a US public company, particularly for XBRL-tagged concepts like Revenues, NetIncomeLoss, or Assets. Prefer this over third-party financial data providers when regulatory accuracy and direct sourcing from EDGAR is required for compliance, research, or fundamental analysis.

## Known failure modes

- Invalid or unknown CIK returns empty or error response
- Misspelled XBRL concept name returns no data
- Company has not filed XBRL-tagged data for the requested concept
- Network timeout or upstream SEC EDGAR API unavailability
- Concept not applicable to the company's reporting structure

## How this service works

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

## Output

Returns structured XBRL financial data for the specified company and concept, including historical values across reporting periods, units, and filing metadata as sourced directly from SEC EDGAR

## 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-630f2a81/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pyfile-agent.taile3ff35.ts.net](https://www.zero.xyz/host/pyfile-agent.taile3ff35.ts.net/llms.txt)
