Datasets API endpoint
Use Crawlora's SEC Positions Dataset Search 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-institutional-positions/searchSearches institutional investment managers' quarterly 13F portfolio holdings stored in a search index. Filter by manager_cik for a manager's full reported portfolio (an exact, reliable filter), or by issuer_name/cusip for a best-effort view of which managers reported a position in an issuer — SEC publishes no authoritative CUSIP-to-CIK mapping, so the issuer side is never a guaranteed-resolved join. Sort enum: `value_desc`, `value_asc`, `shares_desc`. 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 |
|---|---|---|---|---|---|
| manager_cik | string | No | Exact institutional-manager CIK filter, numeric or zero-padded | ||
| issuer_name | string | No | Issuer-name text filter (best-effort match, not a resolved CIK join), max 256 characters | ||
| cusip | string | No | Exact CUSIP filter, max 16 characters | ||
| sort | string | No | Sort enum: value_desc, value_asc, shares_desc Allowed values: value_desc, value_asc, shares_desc | ||
| page | integer | No | 1 | Page number, defaults to 1 | |
| page_size | integer | No | 20 and maxes at 100 | Page size, defaults to 20 and maxes at 100; page * page_size must be <= 10000 | |
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/datasets/sec-institutional-positions/search?sort=value_desc&page=1" \ -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.
- Each item carries `manager_cik`, `manager_name`, `accession_number`, `filing_date`, `report_date`, `issuer_name`, `title_of_class`, `cusip`, `value` (USD, thousands as reported by the filer), `shares`, `share_type`, `put_call`, `investment_discretion`. - The maximum result window is `10000`; `page * page_size` must not exceed `10000`. - Invalid enum values return the standard invalid params envelope. - Returns an empty `items` array (not an error) when nothing matches or the dataset has no data yet. - Does not trigger live scraping. Example response: ```json { "code": 200, "msg": "OK", "data": { "dataset": "sec-institutional-positions", "items": [ { "manager_cik": 1067983, "manager_name": "BERKSHIRE HATHAWAY INC", "accession_number": "0000950123-26-000456", "filing_date": "2026-05-15", "report_date": "2026-03-31", "issuer_name": "APPLE INC", "title_of_class": "COM", "cusip": "037833100", "value": 150000000, "shares": 900000, "share_type": "SH", "investment_discretion": "SOLE" } ], "page": 1, "page_size": 20, "total": 1, "sort": "value_desc" } } ```
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-institutional-positions",
"items": [
{
"manager_cik": 1067983,
"manager_name": "BERKSHIRE HATHAWAY INC",
"accession_number": "0000950123-26-000456",
"filing_date": "2026-05-15",
"report_date": "2026-03-31",
"issuer_name": "APPLE INC",
"title_of_class": "COM",
"cusip": "037833100",
"value": 150000000,
"shares": 900000,
"share_type": "SH",
"investment_discretion": "SOLE"
}
],
"page": 1,
"page_size": 20,
"total": 1,
"sort": "value_desc"
}
}Request schema
No body schema
Response schema
#/definitions/datasets.secInstitutionalPositionsSearchResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | datasets.SecInstitutionalPositionsSearchResponse | No | ||||
| data.dataset | string | No | ||||
| data.items | array | No | ||||
| data.items[].accession_number | string | No | ||||
| data.items[].cusip | string | No | ||||
| data.items[].filing_date | string | No | ||||
| data.items[].investment_discretion | string | No | ||||
| data.items[].issuer_name | string | No | ||||
| data.items[].manager_cik | integer | No | ||||
| data.items[].manager_name | string | No | ||||
| data.items[].put_call | string | No | ||||
| data.items[].report_date | string | No | ||||
| data.items[].share_type | string | No | ||||
| data.items[].shares | number | No | ||||
| data.items[].synced_at | string | No | ||||
| data.items[].title_of_class | string | No | ||||
| data.items[].value | number | No | ||||
| data.page | integer | No | ||||
| data.page_size | integer | No | ||||
| data.sort | string | No | ||||
| data.total | integer | 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-institutional-positions/search?sort=value_desc&page=1" \
-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