> For the complete documentation index, see [llms.txt](https://doc.thordata.com/doc/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.thordata.com/doc/zh-hk/web-scraper-api/zhua-qu-can-shu-shuo-ming/crunchbase-zhua-qu-can-shu.md).

# Crunchbase 抓取參數

Web Scraper API Crunchbase 抓取參數

使用 Thordata 的 Web Scraper API 配置 Crunchbase 抓取參數，包括URL、關鍵詞等參數。

唯一標識：

<details>

<summary><code>token</code>， <strong>訪問令牌（必填）</strong></summary>

此參數用作 API 訪問令牌，以確保抓取請求的合法性。

**請求示例：**&#x20;

`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>

**一、產品-抓取 Crunchbase 公司信息：**

1\. Crunchbase - 通過 URL 抓取公司信息

<details>

<summary><code>spider_id</code>  ， <strong>所屬抓取工具（必填）</strong></summary>

它定義了要使用的抓取工具。

**請求示例：** &#x20;

`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（必填）</strong></summary>

該參數用於指定待抓取的 Crunchbase 中的公司 URL。

**請求示例：**&#x20;

`\"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 - 通過關鍵詞抓取公司信息

<details>

<summary><code>spider_id</code>  ， <strong>所屬抓取工具（必填）</strong></summary>

它定義了要使用的抓取工具。

**請求示例：** &#x20;

`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>，<strong>關鍵詞（必填）</strong></summary>

該參數用於指定抓取  Crunchbase 中搜索公司的關鍵詞。

**請求示例：**&#x20;

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

如果您需要進一步的幫助，請通過電子郵件聯繫 <support@thordata.com>。
