> ## Documentation Index
> Fetch the complete documentation index at: https://docs.brightdata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# YouTube 爬虫快速入门

> 在5分钟内设置Bright Data YouTube爬虫API并收集您的第一个频道数据。

# 简体中文翻译

本教程展示如何使用 Bright Data YouTube Scraper API 抓取 YouTube 频道并获取结构化 JSON 数据。

## 前置条件

* 一个 [Bright Data 账户](https://www.bright.cn/cp/start)（每月含 5,000 个免费积分）
* 已安装 cURL、Python 3 或 Node.js 18+

<Steps>
  <Step title="获取您的 API 密钥">
    前往 Bright Data 账户中的[用户设置页面](https://www.bright.cn/cp/setting/users)并复制您的 API 密钥。

    如果您还没有账户，请[在 brightdata.com 注册](https://www.bright.cn/cp/start)。新账户每月可获得 5,000 个免费积分，无需信用卡。请参阅[免费套餐](/cn/general/account/billing-and-pricing/free-tier)。

    <Warning>
      您的 API 密钥仅在创建时显示一次。请安全地复制并妥善保存。
    </Warning>
  </Step>

  <Step title="发送请求">
    我们将使用**频道端点**发送同步请求。将 `YOUR_API_KEY` 替换为您的实际密钥：

    <CodeGroup>
      ```bash cURL theme={null}
      curl -X POST \
        "https://api.brightdata.com/datasets/v3/scrape?dataset_id=gd_lk538t2k2p1k3oos71&format=json" \
        -H "Authorization: Bearer YOUR_API_KEY" \
        -H "Content-Type: application/json" \
        -d '[{"url": "https://www.youtube.com/@MrBeast"}]'
      ```

      ```python Python theme={null}
      import requests

      response = requests.post(
          "https://api.brightdata.com/datasets/v3/scrape",
          params={"dataset_id": "gd_lk538t2k2p1k3oos71", "format": "json"},
          headers={
              "Authorization": "Bearer YOUR_API_KEY",
              "Content-Type": "application/json",
          },
          json=[{"url": "https://www.youtube.com/@MrBeast"}],
      )

      print(response.json())
      ```

      ```javascript Node.js theme={null}
      const response = await fetch(
        "https://api.brightdata.com/datasets/v3/scrape?dataset_id=gd_lk538t2k2p1k3oos71&format=json",
        {
          method: "POST",
          headers: {
            "Authorization": "Bearer YOUR_API_KEY",
            "Content-Type": "application/json",
          },
          body: JSON.stringify([
            { url: "https://www.youtube.com/@MrBeast" }
          ]),
        }
      );

      const data = await response.json();
      console.log(data);
      ```
    </CodeGroup>

    您应该看到 `200` 状态码。这通常需要 10-30 秒。
  </Step>

  <Step title="查看响应">
    Bright Data YouTube Scraper API 返回包含结构化频道数据的 JSON 数组：

    ```json theme={null}
    [
      {
        "channel_name": "MrBeast",
        "channel_url": "https://www.youtube.com/@MrBeast",
        "subscribers": 358000000,
        "total_videos": 850,
        "total_views": 50000000000,
        "description": "...",
        "is_verified": true
      }
    ]
    ```

    每个频道对象都包含订阅者数、视频数、描述等字段。请参阅[完整响应架构](/api-reference/scrapers/social-media-apis/youtube-channels-collect-by-url)。
  </Step>
</Steps>

您已成功使用 Bright Data YouTube Scraper API 抓取了第一个 YouTube 频道。

## 常见问题

<Accordion title="我可以在一个请求中抓取多个频道吗？">
  可以。将更多对象添加到输入数组中。同步请求支持最多 20 个 URL。对于更大的批次，请使用[异步 `/trigger` 端点](/products/scrapers/scrapers-library/async-requests)。

  ```json theme={null}
  [
    {"url": "https://www.youtube.com/@MrBeast"},
    {"url": "https://www.youtube.com/@PewDiePie"},
    {"url": "https://www.youtube.com/@mkbhd"}
  ]
  ```
</Accordion>

<Accordion title="收到 401 或 403 错误？">
  请验证您的 API 密钥是否正确且未过期。从[账户设置](https://www.bright.cn/cp/setting/users)生成新密钥。详见[身份验证指南](/api-reference/authentication)。
</Accordion>

<Accordion title="请求超时？">
  同步请求的超时时限为 1 分钟。如果请求超过此限制，它将自动切换到异步模式并返回 `snapshot_id`。对于大型批次，请使用[异步工作流](/products/scrapers/scrapers-library/async-requests)。
</Accordion>

<Accordion title="响应数据为空或不完整？">
  请验证 YouTube 频道 URL 是否可公开访问且格式正确。URL 应遵循 `https://www.youtube.com/@handle` 的格式。
</Accordion>

## 后续步骤

<CardGroup cols={3}>
  <Card title="发送您的第一个请求" icon="bolt" href="/products/scrapers/youtube/send-first-request">
    探索所有三种端点类型及完整示例。
  </Card>

  <Card title="异步批量请求" icon="layer-group" href="/products/scrapers/scrapers-library/async-requests">
    在单个批处理作业中抓取数百个 URL。
  </Card>

  <Card title="设置 Webhook" icon="webhook" href="/products/scrapers/scrapers-library/data-delivery">
    抓取完成时自动接收结果。
  </Card>
</CardGroup>
