Government
SEC EDGAR XBRL frame across all filers API
Return one XBRL concept reported by every SEC filer for a single fiscal period (frame, e.g. CY2023Q4I) from the keyless data.sec.gov frames API, normalized and ranked by value descending (CIK, entity, location, value, period, accession). Answers 'which companies had the largest assets in 2023 Q4?','what did all filers report for concept X in period Y?'.
Price$0.01per request
MethodPOST
Route/v1/gov/edgar-frames
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
govsecedgarxbrlframespeerfinancialsranking
API URL
Integration docshttps://x402.hexl.dev/v1/gov/edgar-framesExample request
{
"concept": "Assets",
"period": "CY2023Q4I",
"limit": 1
}Example response
{
"concept": "Assets",
"taxonomy": "us-gaap",
"period": "CY2023Q4I",
"unit": "USD",
"label": "Assets",
"totalFilers": 6426,
"filers": [
{
"cik": "0000019617",
"entityName": "JPMORGAN CHASE & CO",
"location": "US-NY",
"value": 3875393000000,
"start": null,
"end": "2023-12-31",
"accessionNumber": "0000019617-24-000311"
}
]
}Input schema
{
"type": "object",
"required": [
"concept",
"period"
],
"properties": {
"taxonomy": {
"type": "string",
"examples": [
"us-gaap"
],
"default": "us-gaap"
},
"concept": {
"type": "string",
"examples": [
"Assets",
"Revenues"
]
},
"unit": {
"type": "string",
"examples": [
"USD"
],
"default": "USD"
},
"period": {
"type": "string",
"examples": [
"CY2023Q4I",
"CY2023"
]
},
"limit": {
"type": "number",
"minimum": 1,
"maximum": 250,
"default": 25
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}