# 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:

<details>

<summary><code>token</code> <strong>，Access token (required)</strong></summary>

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

**Request examples:**

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

```sh
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}}"
```

</details>

**Product - Scrape Crunchbase company information**

1. Crunchbase - Scrape company information by URL

<details>

<summary><code>spider_id</code> ，S<strong>craper tool (required)</strong></summary>

Defines which scraper tool to use.

**Request examples:**

`spider_id=crunchbase_company_by-url`

```sh
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}}"
```

</details>

<details>

<summary><code>url</code> ，<strong>URL (required)</strong></summary>

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

**Request examples:**

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

```sh
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}}"
```

</details>

2\. Crunchbase - Scrape company information by keyword

<details>

<summary><code>spider_id</code>  ，S<strong>craper tool (required)</strong></summary>

Defines which scraper tool to use.

**Request examples:**

`spider_id=crunchbase_company_by-keywords`

```sh
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}}"
```

</details>

<details>

<summary><code>keyword</code>，keyword <strong>(required)</strong></summary>

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

**Request examples:**

`"keyword": "apple"`

```sh
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}}"
```

</details>

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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://doc.thordata.com/doc/scraping/web-scraper-api/parameter-description/crunchbase-scraping-parameters.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
