pryscraper/templates/crunchbase-company.json
cryptorugmunch 8d25702eca chore(license): re-license to dual MIT (core) + BSL 1.1 (stealth)
Squashed from chore/license-relicense. Full message preserved in the
original branch commit bb77eb5. See ADR-0002 for the decision rationale.

Refs: ADR-0002, commit bb77eb5
2026-07-02 19:59:18 +02:00

53 lines
No EOL
1.3 KiB
JSON

{
"name": "Crunchbase Company",
"description": "Extract company info from Crunchbase",
"site": "crunchbase.com",
"category": "business",
"icon": "\ud83c\udfe2",
"schema": {
"name": "crunchbase_company",
"base_selector": ".page-container",
"fields": [
{
"name": "name",
"selector": "h1",
"type": "text"
},
{
"name": "description",
"selector": "[class*='short-description']",
"type": "text"
},
{
"name": "website",
"selector": "a[href*='http']:not([href*='crunchbase'])",
"type": "attribute",
"attribute": "href"
},
{
"name": "founded",
"selector": "[class*='field-type-date_founded']",
"type": "text"
},
{
"name": "employees",
"selector": "[class*='field-type-organization_num_employees']",
"type": "text"
},
{
"name": "funding",
"selector": "[class*='field-type-money-raised']",
"type": "text",
"transform": "float"
},
{
"name": "headquarters",
"selector": "[class*='field-type-location']",
"type": "text"
}
]
},
"url_pattern": "*://www.crunchbase.com/*",
"_license": "MIT",
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
}