Endpoint Playground
Test Crawlora's SEC Filing Section Extraction 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/sections?cik=320193&ticker=AAPL&accession=0000320193-25-000079&items=1A%2C7" \
-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 |
| items | string | No | 1A,7 | Comma-separated item numbers to return, e.g. 1A,7 |
| max_chars | integer | No | Max characters per section, default 20000, max 200000 |
{
"code": 200,
"msg": "OK",
"data": {
"cik": 320193,
"accession_number": "0000320193-25-000079",
"form": "10-K",
"document_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000079/aapl-20250927.htm",
"count": 1,
"sections": [
{
"item": "1A",
"title": "Risk Factors",
"text": "The Company's business...",
"char_count": 68562,
"truncated": true
}
],
"source_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000079/aapl-20250927.htm"
}
}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.
Extracts item sections (e.g. 1A Risk Factors, 7 MD&A) from a 10-K/10-Q/8-K primary document as clean text. Provide accession plus cik or ticker. Credential-free public SEC data.
{
"code": 200,
"msg": "OK",
"data": {
"cik": 320193,
"accession_number": "0000320193-25-000079",
"form": "10-K",
"document_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000079/aapl-20250927.htm",
"count": 1,
"sections": [
{
"item": "1A",
"title": "Risk Factors",
"text": "The Company's business...",
"char_count": 68562,
"truncated": true
}
],
"source_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000079/aapl-20250927.htm"
}
}curl "https://api.crawlora.net/api/v1/sec/filing/sections?accession=<accession>" \
-H "x-api-key: $CRAWLORA_API_KEY"