Start with 5000 API credits for free
logo

Tiktok user API

Returns information about a tiktok user

Parameters

username - Username to find information about

type: stringlength: min 1, max 24

stream - Stream response

type: booleanDefault: false

Return type

user

Examples

1
2
3
4
5
6
7
8
9
10
11
12
13
import typedclient
import asyncio

api = typedclient.connect('API_KEY')

async def main():
user = await api.tiktok.user(
username="therock"
)
print(user.stats)

asyncio.run(main())