Endpoint Playground
Test Crawlora's SEC Positions Dataset Facets API with realistic prefilled filters. Generate a cURL request, inspect stored structured JSON records, and open the full docs or pricing page when you are ready to integrate dataset search. Dataset Playground requests query indexed data and do not apply proxy routing.
curl "https://api.crawlora.net/api/v1/datasets/sec-institutional-positions/facets?facet=manager" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| facet | string | Yes | manager | Facet enum: manager, issuer |
| manager_cik | string | No | Exact institutional-manager CIK filter, numeric or zero-padded | |
| issuer_name | string | No | Issuer-name text filter (best-effort match), max 256 characters | |
| cusip | string | No | Exact CUSIP filter, max 16 characters |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "sec-institutional-positions",
"facet": "manager",
"items": [
{
"value": "BERKSHIRE HATHAWAY INC",
"count": 42
},
{
"value": "VANGUARD GROUP INC",
"count": 5218
}
]
}
}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 terms-aggregation counts for one facet of the SEC institutional positions dataset, scoped to the same filters as search. Facet enum: `manager`, `issuer`. Dataset endpoints are built for repeatable structured search, facets, geo queries, pagination, and item lookup over indexed records. They do not trigger live scraping or proxy routing.
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "sec-institutional-positions",
"facet": "manager",
"items": [
{
"value": "BERKSHIRE HATHAWAY INC",
"count": 42
},
{
"value": "VANGUARD GROUP INC",
"count": 5218
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/sec-institutional-positions/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"