Endpoint Playground
Test Crawlora's SEC Normalized Financials 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/financials?cik=320193&ticker=AAPL&statement=income&period=annual" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| cik | string | No | 320193 | SEC CIK (numeric or zero-padded) |
| ticker | string | No | AAPL | Ticker symbol (alternative to cik) |
| statement | string | No | income | Statement, default income |
| period | string | No | annual | Period basis, default annual |
| limit | integer | No | Number of periods, default 5, max 20 |
{
"code": 200,
"msg": "OK",
"data": {
"cik": 320193,
"ticker": "AAPL",
"name": "Apple Inc.",
"statement": "income",
"period": "annual",
"line_order": [
"revenue",
"net_income"
],
"periods": [
{
"fiscal_year": 2025,
"fiscal_period": "FY",
"end_date": "2025-09-27",
"form": "10-K",
"currency": "USD",
"lines": {
"revenue": 383285000000,
"net_income": 96995000000
},
"ratios": {
"gross_margin": 0.4413,
"operating_margin": 0.2982,
"net_margin": 0.2531,
"revenue_growth_yoy": -0.028
}
}
],
"source_url": "https://data.sec.gov/api/xbrl/companyfacts/CIK0000320193.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 a company's normalized financial statements across recent periods, resolving EDGAR's inconsistent XBRL tags to a stable schema. Provide cik or ticker. Credential-free public SEC data.
{
"code": 200,
"msg": "OK",
"data": {
"cik": 320193,
"ticker": "AAPL",
"name": "Apple Inc.",
"statement": "income",
"period": "annual",
"line_order": [
"revenue",
"net_income"
],
"periods": [
{
"fiscal_year": 2025,
"fiscal_period": "FY",
"end_date": "2025-09-27",
"form": "10-K",
"currency": "USD",
"lines": {
"revenue": 383285000000,
"net_income": 96995000000
},
"ratios": {
"gross_margin": 0.4413,
"operating_margin": 0.2982,
"net_margin": 0.2531,
"revenue_growth_yoy": -0.028
}
}
],
"source_url": "https://data.sec.gov/api/xbrl/companyfacts/CIK0000320193.json"
}
}curl "https://api.crawlora.net/api/v1/sec/financials" \
-H "x-api-key: $CRAWLORA_API_KEY"