Endpoint Playground
Test Crawlora's Facet the SEC companies dataset 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-companies/facets?facet=sic" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| facet | string | Yes | sic | Facet enum: sic, sic_description, exchange, state_of_incorporation, entity_type, reporting_currency, revenue_band, forms_filed |
| q | string | No | Full-text query over the company name, or an exact ticker match, max 256 characters | |
| ticker | string | No | Exact ticker filter (case-insensitive), max 32 characters | |
| sic | string | No | Exact SIC industry-code filter, max 32 characters | |
| exchange | string | No | Exact exchange filter as reported by EDGAR, max 64 characters | |
| state_of_incorporation | string | No | Exact state/country-of-incorporation filter, max 32 characters | |
| entity_type | string | No | Exact entity-type filter, max 64 characters | |
| reporting_currency | string | No | Exact reporting-currency filter, ISO-4217 code, e.g. USD, JPY, EUR | |
| has_financials | boolean | No | When true, keep only companies that have XBRL financial statements | |
| min_revenue | number | No | Minimum latest-annual revenue in USD (normalized at reference rates), 0 or greater | |
| form_filed | string | No | Exact form-type filter, e.g. 10-K, 8-K |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "sec-companies",
"facet": "sic_description",
"items": [
{
"value": "Electronic Computers",
"count": 18
},
{
"value": "Pharmaceutical Preparations",
"count": 152
},
{
"value": "State Commercial Banks",
"count": 640
}
]
}
}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 companies dataset, scoped to the same filters as search. Facet enum: `sic`, `sic_description`, `exchange`, `state_of_incorporation`, `entity_type`, `reporting_currency`, `revenue_band`, `forms_filed`. `revenue_band` buckets latest-annual revenue into: `unknown`, `under_1m`, `1m_10m`, `10m_100m`, `100m_1b`, `1b_10b`, `over_10b`. 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-companies",
"facet": "sic_description",
"items": [
{
"value": "Electronic Computers",
"count": 18
},
{
"value": "Pharmaceutical Preparations",
"count": 152
},
{
"value": "State Commercial Banks",
"count": 640
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/sec-companies/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"