TikTok Profile API
With TikTok Profile Scraper API, you can scrape any profile. You just have to pass the ID of that person, and our API will return the parsed JSON data.
Parameters
Scrapingdog Parameters
Parameter
Description
Search Query
Parameter
Description
API Example
curl "https://api.scrapingdog.com/tiktok/profile?api_key=APIKEY&username=nike"import requests
api_key = 'APIKEY'
username = 'nike'
params = {
'api_key': api_key,
'username': username
}
response = requests.get('https://api.scrapingdog.com/tiktok/profile', params=params)
if response.status_code == 200:
# Parse the JSON response using response.json()
response_data = response.json()
# Now you can work with the response_data as a Python dictionary
print(response_data)
else:
print(f'Request failed with status code: {response.status_code}')
API Response
{
"id": "208464585232822272",
"short_id": null,
"username": "nike",
"nickname": "Nike",
"profile_url": "https://www.tiktok.com/@nike",
"bio": "Just Do It.",
"sec_uid": "MS4wLjABAAAA_3ndMt8d_tECTdpKgCxcx238tOnQZX-20wqN01aMui5zQ7hsqSdff-jC5qYC-Cl_",
"avatar_thumb": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e0b0ac7b6ad6447a8e923fd1eb162f2c~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=a101ac6e&x-expires=1777032000&x-signature=CqdRMOnpUvUXQOcgfeAxIRLFsvs%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=81f88b70&idc=useast8",
"avatar_medium": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e0b0ac7b6ad6447a8e923fd1eb162f2c~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=ad86b399&x-expires=1777032000&x-signature=JlVz9Li7bTlZo1h6XiYMOpGNcLg%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=81f88b70&idc=useast8",
"avatar_large": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e0b0ac7b6ad6447a8e923fd1eb162f2c~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=1926aed6&x-expires=1777032000&x-signature=fpf7JnumAS2MoVfvN4oUK5ydZw8%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=81f88b70&idc=useast8",
"verified": true,
"private_account": false,
"is_secret": false,
"is_commerce_account": true,
"commerce_category": "Sports, Fitness & Outdoors",
"is_seller": false,
"is_organization": true,
"is_ad_virtual": false,
"is_embed_banned": false,
"ftc": false,
"bio_link": "http://empli.fi/niketiktok",
"region": null,
"language": "en",
"created_at": 1490044565,
"created_at_iso": "2017-03-20T21:16:05.000Z",
"username_last_changed_at": null,
"nickname_last_changed_at": null,
"followers": 8423473,
"following": 75,
"likes": 42509003,
"video_count": 1072,
"digg_count": 0,
"friend_count": 38,
"duet_setting": 0,
"stitch_setting": 0,
"comment_setting": 0,
"download_setting": 0,
"following_visibility": 2,
"open_favorite": false,
"relation": 0,
"profile_tabs": {
"music": false,
"questions": true,
"playlists": true,
"can_expand_playlist": true
},
"is_live": false,
"room_id": null,
"recommend_reason": null,
"canonical_url": "https://www.tiktok.com/@nike",
"share_title": "Nike on TikTok",
"share_desc": "@nike 8.4m Followers, 75 Following, 42.5m Likes - Watch awesome short videos created by Nike"
}Last updated