Skip to main content
POST
/
datasets
/
v3
/
scrape
Collect Profiles by URL
curl --request POST \
  --url https://api.brightdata.com/datasets/v3/scrape \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "input": [
    {
      "url": "<string>"
    }
  ]
}
'
[
  {
    "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"
  }
]

Query Parameters

dataset_id
string
default:"gd_l1villgoiiidt09ci"
required
The dataset ID used for this request.
Must be set to gd_l1villgoiiidt09ci to collect Profiles by URL data.
notify
boolean
default:false
Whether to send notifications when the request is completed.
include_errors
boolean
default:true
Whether to include errors in the response.

Request Body

input
object[]
required
An array of input objects.

Example

{
  "input": [
    {"url": "https://www.tiktok.com/@mrbeast"},
    {"url": "https://www.tiktok.com/@charlidamelio"}
  ]
}
[
  {
    "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"
  }
]