# EDGAR XBRL Company Concept Lookup

> EDGAR XBRL Company Concept Lookup is a paid API for AI agents from vaaya.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches all fiscal-period values for a single XBRL financial concept (e.g. revenue, net income, assets) for a public company from SEC EDGAR's companyconcept API.

## Facts

- Endpoint: POST https://vaaya.ai/api/run/edgar/concept
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/edgar-xbrl-company-concept-lookup-53ff5443
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IjzfQSU8sx289Ymt-j_5z

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 edgar-xbrl-company-concept-lookup-53ff5443 -d '<json body>'
```

Example prompt: What was Apple's (CIK 320193) revenue across all fiscal periods? Use the us-gaap concept RevenueFromContractWithCustomerExcludingAssessedTax to pull the full history from EDGAR.

## When to prefer this

Use this endpoint when you need structured, authoritative financial data for a specific US public company from official SEC filings — especially when you want a single concept across all periods without downloading multi-megabyte 10-K documents. Prefer this over web scraping or general search when you need machine-readable, auditable financial figures tied to specific filings. Ideal for financial research agents, stock screeners, or any workflow requiring GAAP-tagged accounting data.

## Known failure modes

- Invalid or unknown CIK returns an error or empty result
- Incorrect us-gaap concept tag name (case-sensitive) returns no data
- Company has not filed the requested concept under that exact XBRL tag (e.g. older companies may use 'Revenues' instead of 'RevenueFromContractWithCustomerExcludingAssessedTax')
- Private companies or non-SEC registrants have no data in EDGAR
- Rate limits or SEC API downtime may cause failures
- Payment failure (insufficient USDC balance) blocks the call

## How this service works

One XBRL financial concept for a PUBLIC company, all fiscal periods (data.sec.gov companyconcept). Pass `cik` + `concept` (us-gaap tag, e.g. RevenueFromContractWithCustomerExcludingAssessedTax, Revenues, NetIncomeLoss, Assets). Small structured response — the right way to answer "what was <public co>'s revenue", instead of scraping a multi-MB 10-K.

## Output

A structured JSON response containing all reported values for the requested XBRL concept across all fiscal periods and filing types (annual/quarterly), including period start/end dates, value, unit (e.g. USD), form type (10-K, 10-Q), and accession number for each data point.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "http://json-schema.org/draft-07/schema#",
     "required": [
      "cik",
      "concept"
     ],
     "properties": {
      "cik": {
       "anyOf": [
        {
         "type": "string",
         "pattern": "^\\d{1,10}$"
        },
        {
         "type": "integer",
         "exclusiveMinimum": 0
        }
       ]
      },
      "concept": {
       "type": "string",
       "pattern": "^[A-Za-z][A-Za-z0-9]{0,120}$"
      },
      "taxonomy": {
       "enum": [
        "us-gaap",
        "dei",
        "ifrs-full"
       ],
       "type": "string"
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "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/edgar-xbrl-company-concept-lookup-53ff5443/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vaaya.ai](https://www.zero.xyz/host/vaaya.ai/llms.txt)
