For the complete documentation index, see llms.txt. This page is also available as Markdown.

Crunchbase Scraping Parameters

Web Scraper API Crunchbase Parameters

Configure Crunchbase scraping parameters using Thordata's Web Scraper API, including URL, keywords, and other parameters.

Unique Identifier:

token ,Access token (required)

This parameter is used as the API access token to ensure the legitimacy of the scraping request.

Request examples:

Authorization: Bearer ********************

curl -X POST "https://scraperapi.thordata.com/builder" ^
  -H "Authorization: Bearer ********************" ^
  -H "Content-Type: application/x-www-form-urlencoded" ^
  -d "spider_name=crunchbase.com" ^
  -d "spider_id=crunchbase_company_by-url" ^
  -d "spider_parameters=[{\"url\": \"https://www.crunchbase.com/organization/apple\"}]" ^
  -d "spider_errors=true" ^
  -d "file_name={{TasksID}}"

Product - Scrape Crunchbase company information

  1. Crunchbase - Scrape company information by URL

spider_id ,Scraper tool (required)

Defines which scraper tool to use.

Request examples:

spider_id=crunchbase_company_by-url

curl -X POST "https://scraperapi.thordata.com/builder" ^
  -H "Authorization: Bearer Token-ID" ^
  -H "Content-Type: application/x-www-form-urlencoded" ^
  -d "spider_name=crunchbase.com" ^
  -d "spider_id=crunchbase_company_by-url" ^
  -d "spider_parameters=[{\"url\": \"https://www.crunchbase.com/organization/apple\"}]" ^
  -d "spider_errors=true" ^
  -d "file_name={{TasksID}}"
urlURL (required)

This parameter is used to specify the company URL to be scraped on Crunchbase.

Request examples:

"url": "https://www.crunchbase.com/organization/apple"

curl -X POST "https://scraperapi.thordata.com/builder" ^
  -H "Authorization: Bearer Token-ID" ^
  -H "Content-Type: application/x-www-form-urlencoded" ^
  -d "spider_name=crunchbase.com" ^
  -d "spider_id=crunchbase_company_by-url" ^
  -d "spider_parameters=[{\"url\": \"https://www.crunchbase.com/organization/apple\"}]" ^
  -d "spider_errors=true" ^
  -d "file_name={{TasksID}}"

2. Crunchbase - Scrape company information by keyword

spider_id ,Scraper tool (required)

Defines which scraper tool to use.

Request examples:

spider_id=crunchbase_company_by-keywords

curl -X POST "https://scraperapi.thordata.com/builder" ^
  -H "Authorization: Bearer Token-ID" ^
  -H "Content-Type: application/x-www-form-urlencoded" ^
  -d "spider_name=crunchbase.com" ^
  -d "spider_id=crunchbase_company_by-keywords" ^
  -d "spider_parameters=[{\"keyword\": \"apple\"}]" ^
  -d "spider_errors=true" ^
  -d "file_name={{TasksID}}"
keyword,keyword (required)

This parameter is used to specify the keyword for searching companies on Crunchbase.

Request examples:

"keyword": "apple"

If you need further assistance, please contact us via email at support@thordata.com.

Last updated