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

# Collect TikTok profiles by URL

## Query Parameters

<ParamField query="dataset_id" type="string" default="gd_l1villgoiiidt09ci" required>
  The dataset ID used for this request.

  <Warning>
    Must be set to `gd_l1villgoiiidt09ci` to collect **Profiles by URL** data.
  </Warning>
</ParamField>

<ParamField query="notify" type="boolean" default={false}>
  Whether to send notifications when the request is completed.
</ParamField>

<ParamField query="include_errors" type="boolean" default={true}>
  Whether to include errors in the response.
</ParamField>

## Request Body

<ParamField body="input" type="object[]" required>
  An array of input objects.

  <Expandable title="properties">
    <ParamField body="url" type="string" required>
      The URL of the TikTok profile to collect.
    </ParamField>
  </Expandable>

  #### Example

  ```json wrap theme={null}
  {
    "input": [
      {"url": "https://www.tiktok.com/@mrbeast"},
      {"url": "https://www.tiktok.com/@charlidamelio"}
    ]
  }
  ```
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "account_id": "123456789",
      "nickname": "Example Creator",
      "biography": "Content creator and storyteller",
      "bio_link": "https://example.com",
      "is_verified": true,
      "followers": 150000000,
      "following": 800,
      "likes": 3200000000,
      "videos_count": 950,
      "create_time": "2018-05-20T00:00:00.000Z",
      "url": "https://www.tiktok.com/@examplecreator",
      "profile_pic_url": "https://p16-sign-sg.tiktokcdn.com/example-avatar~100x100.jpeg",
      "profile_pic_url_hd": "https://p16-sign-sg.tiktokcdn.com/example-avatar~720x720.jpeg",
      "awg_engagement_rate": 0.0432,
      "is_private": false,
      "region": "US"
    }
  ]
  ```
</ResponseExample>
