Datasets API endpoint
Use Crawlora's SEC Insider Transactions Dataset API to search or inspect stored structured datasets as JSON. This page includes request parameters, cURL examples, response schema, validation behavior, credit cost, and a Playground link for testing before integration. Dataset endpoints read indexed records and do not apply proxy routing.
/datasets/sec-companies/insider/{cik}Returns a company's insider (Form 3/4/5) transaction history from the SEC companies dataset, most recent transaction first. An unknown CIK or a company with no reported transactions returns an empty series rather than a 404. Developers commonly use this endpoint for repeatable dataset search, filtering, facets, local business enrichment, analytics, exports, and internal tools that need structured records beyond the limited manual refinement available in the Google Maps app. Authentication uses the x-api-key header, usage is metered with the credit cost shown on this page, and the request does not trigger live scraping or proxy routing.
Request parameters are generated from the active endpoint catalog. Dataset parameters filter, page, facet, or locate stored structured records; they do not configure a live scraper or proxy path.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| cik (path) | string | Yes | SEC CIK, numeric or zero-padded | ||
| from | string | No | Inclusive start date (YYYY-MM-DD, UTC) filtering transaction date | ||
| to | string | No | Inclusive end date (YYYY-MM-DD, UTC) filtering transaction date | ||
| code | string | No | Exact transaction code filter, e.g. P (open-market purchase), S (sale) | ||
| limit | integer | No | Maximum transactions returned (most recent first), default 50, max 200 | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/datasets/sec-companies/insider/%3Ccik%3E?limit=10" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint reads stored indexed dataset records. It does not execute a live upstream Google Maps request, browser session, or proxy-routed scraping job.
- An unknown CIK or a company with no reported transactions returns an empty series (HTTP `200` with `count: 0`) rather than a `404`. - Each item carries `owner_name`, `owner_title`, `is_director`/`is_officer`/`is_ten_percent_owner`, `security_title`, `transaction_date`, `code`, `acquired_or_disposed`, `shares`, `price_per_share`, `shares_owned_after`, and `filing_url`. - Rows are naturally idempotent (keyed by accession number + row sequence within the filing), so re-crawls never duplicate a transaction. Example response: ```json { "code": 200, "msg": "OK", "data": { "dataset": "sec-companies", "cik": 320193, "count": 1, "items": [ { "cik": 320193, "accession_number": "0000320193-25-000082", "form": "4", "filing_date": "2025-11-17", "owner_name": "COOK TIMOTHY D", "owner_title": "Chief Executive Officer", "is_officer": true, "security_title": "Common Stock", "transaction_date": "2025-11-15", "code": "S", "acquired_or_disposed": "D", "shares": 75000, "price_per_share": 268.42, "shares_owned_after": 3234400, "filing_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000082/" } ] } } ```
Crawlora does not silently return invalid dataset search results when filters, pagination, coordinates, or stored record lookups cannot be satisfied.
| Status | Common failure case |
|---|---|
| 400 | Invalid input, missing required parameter, invalid enum, bad coordinate pair, or result window beyond the dataset limit |
| 404 | Requested stored dataset item is not present |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal dataset query or storage error |
When possible, Crawlora returns structured error context so your integration can adjust filters, page size, location inputs, or lookup identifiers.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "sec-companies",
"cik": 320193,
"count": 1,
"items": [
{
"cik": 320193,
"accession_number": "0000320193-25-000082",
"form": "4",
"filing_date": "2025-11-17",
"owner_name": "COOK TIMOTHY D",
"owner_title": "Chief Executive Officer",
"is_officer": true,
"security_title": "Common Stock",
"transaction_date": "2025-11-15",
"code": "S",
"acquired_or_disposed": "D",
"shares": 75000,
"price_per_share": 268.42,
"shares_owned_after": 3234400,
"filing_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000082/"
}
]
}
}Request schema
No body schema
Response schema
#/definitions/datasets.secCompaniesInsiderResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | datasets.SecCompanyInsiderResponse | No | ||||
| data.cik | integer | No | ||||
| data.count | integer | No | ||||
| data.dataset | string | No | ||||
| data.items | array | No | ||||
| data.items[].accession_number | string | No | ||||
| data.items[].acquired_or_disposed | string | No | ||||
| data.items[].cik | integer | No | ||||
| data.items[].code | string | No | ||||
| data.items[].filing_date | string | No | ||||
| data.items[].filing_url | string | No | ||||
| data.items[].form | string | No | ||||
| data.items[].is_director | boolean | No | ||||
| data.items[].is_officer | boolean | No | ||||
| data.items[].is_ten_percent_owner | boolean | No | ||||
| data.items[].owner_name | string | No | ||||
| data.items[].owner_title | string | No | ||||
| data.items[].price_per_share | number | No | ||||
| data.items[].security_title | string | No | ||||
| data.items[].shares | number | No | ||||
| data.items[].shares_owned_after | number | No | ||||
| data.items[].synced_at | string | No | ||||
| data.items[].transaction_date | string | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/datasets/sec-companies/insider/%3Ccik%3E?limit=10" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms