Endpoint Playground
Test Crawlora's SEC Company Intelligence 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/company/intelligence?cik=320193&ticker=AAPL&enrich=market&ats=greenhouse" \
-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) |
| enrich | string | No | market | Comma list of cross-source enrichments |
| ats | string | No | greenhouse | ATS provider for hiring enrichment |
| careers_slug | string | No | Careers board slug for hiring (greenhouse/lever/ashby/smartrecruiters) | |
| tenant | string | No | Workday tenant (hiring, when ats=workday) | |
| datacenter | string | No | Workday datacenter shard (hiring, when ats=workday) | |
| site | string | No | Workday career site (hiring, when ats=workday) |
{
"code": 200,
"msg": "OK",
"data": {
"profile": {
"cik": 320193,
"ticker": "AAPL",
"name": "Apple Inc.",
"sic": "3571",
"sic_description": "Electronic Computers"
},
"financial_snapshot": {
"revenue": 383285000000,
"net_income": 96995000000,
"total_assets": 364980000000,
"operating_cash_flow": 110543000000
},
"snapshot_fiscal_year": 2025,
"recent_events": [],
"market": {
"symbol": "AAPL",
"name": "Apple Inc.",
"price": 211.45,
"currency": "USD",
"market_cap": 3200000000000
},
"news": [
{
"title": "Apple announces ...",
"publisher": "Reuters",
"url": "https://...",
"published_at": "2026-07-10T14:00:00Z"
}
],
"degraded": [
"hiring"
],
"source_urls": [
"https://data.sec.gov/submissions/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.
Aggregates a company's profile, a latest-annual financial snapshot, the latest 10-K/10-Q/8-K, and recent material events into one call. Provide cik or ticker. Optionally fuse live cross-source data with enrich (a comma list of market, news, hiring): market and news are keyed on the ticker; hiring needs ats plus that ATS's careers slug (or tenant/datacenter/site for Workday). Enrichment is best-effort — requested-but-unavailable sources are listed under degraded and never fail the SEC-native response. Credential-free public data.
{
"code": 200,
"msg": "OK",
"data": {
"profile": {
"cik": 320193,
"ticker": "AAPL",
"name": "Apple Inc.",
"sic": "3571",
"sic_description": "Electronic Computers"
},
"financial_snapshot": {
"revenue": 383285000000,
"net_income": 96995000000,
"total_assets": 364980000000,
"operating_cash_flow": 110543000000
},
"snapshot_fiscal_year": 2025,
"recent_events": [],
"market": {
"symbol": "AAPL",
"name": "Apple Inc.",
"price": 211.45,
"currency": "USD",
"market_cap": 3200000000000
},
"news": [
{
"title": "Apple announces ...",
"publisher": "Reuters",
"url": "https://...",
"published_at": "2026-07-10T14:00:00Z"
}
],
"degraded": [
"hiring"
],
"source_urls": [
"https://data.sec.gov/submissions/CIK0000320193.json"
]
}
}curl "https://api.crawlora.net/api/v1/sec/company/intelligence" \
-H "x-api-key: $CRAWLORA_API_KEY"