Endpoint Playground
Test Crawlora's SEC Insider Transactions 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/insider?cik=320193&ticker=AAPL" \
-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) |
| limit | integer | No | Max transactions, default 10, max 30 |
{
"code": 200,
"msg": "OK",
"data": {
"cik": 320193,
"ticker": "AAPL",
"name": "Apple Inc.",
"count": 1,
"transactions": [
{
"accession_number": "0001140361-26-025622",
"form": "4",
"filing_date": "2026-06-17",
"owner_name": "Newstead Jennifer",
"owner_title": "SVP, GC and Secretary",
"is_officer": true,
"security_title": "Common Stock",
"transaction_date": "2026-06-15",
"code": "M",
"acquired_or_disposed": "A",
"shares": 30104,
"shares_owned_after": 57784
}
],
"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 insider transactions parsed from Form 3/4/5 ownership filings (owner, role, security, shares, price). Provide cik or ticker. Credential-free public SEC data.
{
"code": 200,
"msg": "OK",
"data": {
"cik": 320193,
"ticker": "AAPL",
"name": "Apple Inc.",
"count": 1,
"transactions": [
{
"accession_number": "0001140361-26-025622",
"form": "4",
"filing_date": "2026-06-17",
"owner_name": "Newstead Jennifer",
"owner_title": "SVP, GC and Secretary",
"is_officer": true,
"security_title": "Common Stock",
"transaction_date": "2026-06-15",
"code": "M",
"acquired_or_disposed": "A",
"shares": 30104,
"shares_owned_after": 57784
}
],
"source_url": "https://data.sec.gov/submissions/CIK0000320193.json"
}
}curl "https://api.crawlora.net/api/v1/sec/insider" \
-H "x-api-key: $CRAWLORA_API_KEY"