Endpoint Playground
Test Crawlora's SEC Company Dataset Item API with realistic prefilled filters. Generate a cURL request, inspect stored structured JSON records, and open the full docs or pricing page when you are ready to integrate dataset search. Dataset Playground requests query indexed data and do not apply proxy routing.
curl "https://api.crawlora.net/api/v1/datasets/sec-companies/items/<cik>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| cik (path) | string | Yes | SEC CIK, numeric or zero-padded, e.g. 320193 or 0000320193 |
{
"code": 200,
"msg": "OK",
"data": {
"cik": 320193,
"cik_padded": "0000320193",
"name": "Apple Inc.",
"former_names": [
"Apple Computer Inc."
],
"tickers": [
"AAPL"
],
"primary_ticker": "AAPL",
"exchange": [
"Nasdaq"
],
"sic": "3571",
"sic_description": "Electronic Computers",
"state_of_incorporation": "CA",
"fiscal_year_end": "0928",
"entity_type": "operating",
"filing_count": 342,
"latest_filing_date": "2025-10-31",
"forms_filed": [
"10-K",
"10-Q",
"8-K",
"4"
],
"recent_filings": [
{
"accession_number": "0000320193-25-000081",
"form": "10-K",
"filing_date": "2025-10-31",
"primary_doc_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000081/aapl-20250927.htm"
}
],
"latest_annual_fiscal_year": 2024,
"latest_annual_revenue": 391035000000,
"latest_annual_net_income": 93736000000,
"latest_annual_total_assets": 364980000000,
"revenue_band": "over_10b",
"insider_txn_count_90d": 6,
"insider_net_shares_90d": -18000,
"insider_last_transaction_at": "2025-11-15",
"crawled_at": "2026-07-15T03:12:00Z"
}
}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 one SEC-reporting company by CIK from dataset id `sec-companies`, including its filing-history summary, financial-statement rollups, and trailing-90-day insider-activity summary. Returns 404 when the CIK is not in the dataset. Dataset endpoints are built for repeatable structured search, facets, geo queries, pagination, and item lookup over indexed records. They do not trigger live scraping or proxy routing.
{
"code": 200,
"msg": "OK",
"data": {
"cik": 320193,
"cik_padded": "0000320193",
"name": "Apple Inc.",
"former_names": [
"Apple Computer Inc."
],
"tickers": [
"AAPL"
],
"primary_ticker": "AAPL",
"exchange": [
"Nasdaq"
],
"sic": "3571",
"sic_description": "Electronic Computers",
"state_of_incorporation": "CA",
"fiscal_year_end": "0928",
"entity_type": "operating",
"filing_count": 342,
"latest_filing_date": "2025-10-31",
"forms_filed": [
"10-K",
"10-Q",
"8-K",
"4"
],
"recent_filings": [
{
"accession_number": "0000320193-25-000081",
"form": "10-K",
"filing_date": "2025-10-31",
"primary_doc_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000081/aapl-20250927.htm"
}
],
"latest_annual_fiscal_year": 2024,
"latest_annual_revenue": 391035000000,
"latest_annual_net_income": 93736000000,
"latest_annual_total_assets": 364980000000,
"revenue_band": "over_10b",
"insider_txn_count_90d": 6,
"insider_net_shares_90d": -18000,
"insider_last_transaction_at": "2025-11-15",
"crawled_at": "2026-07-15T03:12:00Z"
}
}curl "https://api.crawlora.net/api/v1/datasets/sec-companies/items/<cik>" \
-H "x-api-key: $CRAWLORA_API_KEY"