Endpoint Playground
Test Crawlora's SEC Filing Detail 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/filing?cik=320193&ticker=AAPL&accession=0000320193-25-000079" \
-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) |
| accession | string | Yes | 0000320193-25-000079 | Accession number |
{
"code": 200,
"msg": "OK",
"data": {
"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",
"cik": 320193,
"cik_padded": "CIK0000320193",
"name": "Apple Inc.",
"source_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000079/"
}
}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 single SEC filing's metadata and primary document URL. Provide accession plus cik or ticker. Credential-free public SEC data.
{
"code": 200,
"msg": "OK",
"data": {
"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",
"cik": 320193,
"cik_padded": "CIK0000320193",
"name": "Apple Inc.",
"source_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000079/"
}
}curl "https://api.crawlora.net/api/v1/sec/filing?accession=<accession>" \
-H "x-api-key: $CRAWLORA_API_KEY"