Endpoint Playground
Test Crawlora's Get a single company by board id 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/jobs/companies/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Dataset board id |
{
"code": 200,
"msg": "OK",
"data": {
"board_id": "eightfold:1a2b3c4d5e6f7890abcd",
"provider": "eightfold",
"company_name": "Microsoft",
"coords": {
"provider": "eightfold",
"tenant": "microsoft",
"domain": "microsoft.com"
},
"domain": "microsoft.com",
"open_roles_count": 1823,
"sponsors_visa": true,
"status": "active",
"discovery_source": "manual",
"first_seen": "2026-07-17T00:00:00Z",
"last_crawled": "2026-07-18T00:00:00Z",
"lca_sponsorship": {
"sponsors_visa": true,
"filing_count": 12000,
"certified_count": 11000,
"certified_withdrawn_count": 300,
"denied_count": 40,
"first_seen_fiscal_quarter": "FY2023-Q1",
"last_seen_fiscal_quarter": "FY2026-Q2",
"sample_job_titles": [
"Software Engineer",
"Technical Program Manager"
]
},
"tech_stack": {
"domain": "microsoft.com",
"technology_names": [
"Azure",
"React",
"Cloudflare"
],
"categories": [
"Cloud",
"JavaScript Framework",
"CDN"
],
"cdn": "Cloudflare"
}
}
}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 one discovered company board by its dataset board id. When the company name matches recent public U.S. Department of Labor LCA disclosure data, the response includes `lca_sponsorship` with filing counts and observed fiscal-quarter range; this is company-level historical evidence, not a guarantee for a specific role or candidate. When the board carries a known domain, the response also includes a `tech_stack` firmographic hint. Returns 404 when the board id is not in the registry. 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": {
"board_id": "eightfold:1a2b3c4d5e6f7890abcd",
"provider": "eightfold",
"company_name": "Microsoft",
"coords": {
"provider": "eightfold",
"tenant": "microsoft",
"domain": "microsoft.com"
},
"domain": "microsoft.com",
"open_roles_count": 1823,
"sponsors_visa": true,
"status": "active",
"discovery_source": "manual",
"first_seen": "2026-07-17T00:00:00Z",
"last_crawled": "2026-07-18T00:00:00Z",
"lca_sponsorship": {
"sponsors_visa": true,
"filing_count": 12000,
"certified_count": 11000,
"certified_withdrawn_count": 300,
"denied_count": 40,
"first_seen_fiscal_quarter": "FY2023-Q1",
"last_seen_fiscal_quarter": "FY2026-Q2",
"sample_job_titles": [
"Software Engineer",
"Technical Program Manager"
]
},
"tech_stack": {
"domain": "microsoft.com",
"technology_names": [
"Azure",
"React",
"Cloudflare"
],
"categories": [
"Cloud",
"JavaScript Framework",
"CDN"
],
"cdn": "Cloudflare"
}
}
}curl "https://api.crawlora.net/api/v1/datasets/jobs/companies/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"