Endpoint Playground
Test Crawlora's SEC Full-Text Search 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/full-text-search?q=artificial+intelligence&forms=10-K" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | artificial intelligence | Search query (supports quoted phrases) |
| forms | string | No | 10-K | Filter by form types, comma-separated |
| from | string | No | Earliest filing date (YYYY-MM-DD) | |
| to | string | No | Latest filing date (YYYY-MM-DD) | |
| page | integer | No | 1-based page number, default 1 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "artificial intelligence",
"total": 10000,
"page": 1,
"count": 1,
"hits": [
{
"accession_number": "0001161697-21-000289",
"cik": 1498148,
"company_names": [
"Artificial Intelligence Technology Solutions Inc. (AITX) (CIK 0001498148)"
],
"form": "10-K",
"filed_at": "2021-06-01",
"document_url": "https://www.sec.gov/Archives/edgar/data/1498148/000116169721000289/ex_99-1.htm"
}
],
"source_url": "https://efts.sec.gov/LATEST/search-index?forms=10-K&q=artificial+intelligence"
}
}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.
Searches the full text of SEC EDGAR filings (efts), filtered by form and date, with pagination. Credential-free public SEC data; free where incumbents gate full-text search behind paid tiers.
{
"code": 200,
"msg": "OK",
"data": {
"query": "artificial intelligence",
"total": 10000,
"page": 1,
"count": 1,
"hits": [
{
"accession_number": "0001161697-21-000289",
"cik": 1498148,
"company_names": [
"Artificial Intelligence Technology Solutions Inc. (AITX) (CIK 0001498148)"
],
"form": "10-K",
"filed_at": "2021-06-01",
"document_url": "https://www.sec.gov/Archives/edgar/data/1498148/000116169721000289/ex_99-1.htm"
}
],
"source_url": "https://efts.sec.gov/LATEST/search-index?forms=10-K&q=artificial+intelligence"
}
}curl "https://api.crawlora.net/api/v1/sec/full-text-search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"