Endpoint Playground
Test Crawlora's SEC XBRL Frames API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/sec/frames?concept=Assets&period=CY2024Q4I&unit=USD&taxonomy=dei" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| concept | string | Yes | Assets | XBRL concept tag, e.g. Assets, Revenues |
| period | string | Yes | CY2024Q4I | Reporting frame, e.g. CY2024, CY2024Q1, CY2024Q4I |
| unit | string | No | USD | Unit of measure, default USD |
| taxonomy | string | No | dei | XBRL taxonomy, default us-gaap |
| limit | integer | No | Max companies, default 200, max 2000 |
{
"code": 200,
"msg": "OK",
"data": {
"taxonomy": "us-gaap",
"concept": "Assets",
"unit": "USD",
"period": "CY2024Q4I",
"total": 6245,
"count": 1,
"facts": [
{
"cik": 1750,
"entity_name": "AAR CORP",
"value": 2849300000,
"end": "2024-11-30",
"accession_number": "0001410578-25-000003"
}
],
"source_url": "https://data.sec.gov/api/xbrl/frames/us-gaap/Assets/USD/CY2024Q4I.json"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns every filer's reported value for one XBRL concept in one reporting period (an EDGAR "frame"). Credential-free public SEC data.
{
"code": 200,
"msg": "OK",
"data": {
"taxonomy": "us-gaap",
"concept": "Assets",
"unit": "USD",
"period": "CY2024Q4I",
"total": 6245,
"count": 1,
"facts": [
{
"cik": 1750,
"entity_name": "AAR CORP",
"value": 2849300000,
"end": "2024-11-30",
"accession_number": "0001410578-25-000003"
}
],
"source_url": "https://data.sec.gov/api/xbrl/frames/us-gaap/Assets/USD/CY2024Q4I.json"
}
}curl "https://api.crawlora.net/api/v1/sec/frames?concept=<concept>&period=<period>" \
-H "x-api-key: $CRAWLORA_API_KEY"