Catalog/gov-edgar-company-facts

Government

SEC EDGAR XBRL company facts by CIK API

Summarize all XBRL company facts for a SEC filer by CIK from the keyless data.sec.gov companyfacts API into a flat schema (entity name, taxonomies, total concept count, and the latest value + unit + form for each concept). Answers 'what financial facts has company CIK X reported?','what is the latest reported value for each XBRL concept?'.

Price$0.01per request
MethodPOST
Route/v1/gov/edgar-company-facts
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
govsecedgarxbrlcompany-factsfinancialsfilingscik
API URLhttps://x402.hexl.dev/v1/gov/edgar-company-facts
Integration docs
Example request
{
  "cik": "320193",
  "conceptLimit": 2
}
Example response
{
  "cik": "0000320193",
  "entityName": "Apple Inc.",
  "taxonomies": [
    "dei",
    "us-gaap"
  ],
  "totalConcepts": 511,
  "concepts": [
    {
      "taxonomy": "us-gaap",
      "concept": "Assets",
      "label": "Assets",
      "unit": "USD",
      "latestValue": 371082000000,
      "latestEnd": "2026-03-28",
      "latestForm": "10-Q",
      "latestFiled": "2026-05-01"
    }
  ]
}
Input schema
{
  "type": "object",
  "required": [
    "cik"
  ],
  "properties": {
    "cik": {
      "type": "string",
      "examples": [
        "320193",
        "0000320193"
      ]
    },
    "conceptLimit": {
      "type": "number",
      "minimum": 1,
      "maximum": 250,
      "default": 50
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}