Endpoint Playground
Test Crawlora's SEC Company Submissions 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/submissions?cik=320193&ticker=AAPL&form=10-K" \
-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) |
| form | string | No | 10-K | Filter by form type, e.g. 10-K, 10-Q, 8-K |
| from | string | No | Earliest filing date (YYYY-MM-DD) | |
| to | string | No | Latest filing date (YYYY-MM-DD) | |
| limit | integer | No | Max filings, default 50, max 500 |
{
"code": 200,
"msg": "OK",
"data": {
"cik": 320193,
"cik_padded": "CIK0000320193",
"name": "Apple Inc.",
"tickers": [
"AAPL"
],
"sic": "3571",
"sic_description": "Electronic Computers",
"count": 1,
"filings": [
{
"accession_number": "0000320193-25-000079",
"form": "10-K",
"filing_date": "2025-10-31",
"report_date": "2025-09-27",
"primary_document": "aapl-20250927.htm",
"primary_doc_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000079/aapl-20250927.htm",
"is_xbrl": true
}
],
"source_url": "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.
Returns a company's recent SEC filings (form, dates, primary document URL) filtered by form type and date range. Provide cik or ticker. Credential-free public SEC data.
{
"code": 200,
"msg": "OK",
"data": {
"cik": 320193,
"cik_padded": "CIK0000320193",
"name": "Apple Inc.",
"tickers": [
"AAPL"
],
"sic": "3571",
"sic_description": "Electronic Computers",
"count": 1,
"filings": [
{
"accession_number": "0000320193-25-000079",
"form": "10-K",
"filing_date": "2025-10-31",
"report_date": "2025-09-27",
"primary_document": "aapl-20250927.htm",
"primary_doc_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000079/aapl-20250927.htm",
"is_xbrl": true
}
],
"source_url": "https://data.sec.gov/submissions/CIK0000320193.json"
}
}curl "https://api.crawlora.net/api/v1/sec/company/submissions" \
-H "x-api-key: $CRAWLORA_API_KEY"