Docs
Query Videos
Create Query Task
Query
Query Parameters
Key | Type | Description | Example | Required |
category | string | The data category for which the analysis is planned | video | Yes |
condition_groups | list<Condition> | Specifications for what data should be returned and processed | | Yes |
fields | string | Data fields to be returned. Interface will only return the fields listed here. | video_id,create_date,video_length,username,region_code,music_id,effect_id,hashtag_name,view_count,comment_count,video_description | Yes |
limit | int | The maximum number of records that will be returned. Test Stage The default value is 100. Execution Stage The default value is 1000. | 200 | No |
start date | string | The start date of the time period being queried | "start_date": "20240601" | Yes |
end date | string | The end date of the time period being queried | "end_date": "20240630" | Yes |
Query Condition
Key | Type | Description | Required |
and | list<Condition> | The | No |
or | list<Condition> | The | No |
not | list<Condition> | The | No |
Query Condition Fields and Operators
Field | Description | Type | Allowed Operator |
video_id | Unique identifier for the TikTok video. Also called "item_id" or "video_id" | string |
|
create_date | UTC Unix epoch (in seconds) of when the TikTok video was posted. (Inherited field from TNS research API) | string |
|
video_length | The duration of the video, in seconds. | int |
|
username | The video creator's username | string |
|
region_code | A two digit code for the country the video was posted in | string |
|
music_id | The music_id used in the video | int64 |
|
effect_id | Effect ID that the video used | string |
|
hashtag_name | Hash tag name which is associated with the video. | string |
|
view_count | The number of video views the video has received. | int64 |
|
comment_count | The number of comments the video has received. | string |
|
video_description | The description of the video, also known as the title | string |
|
Create Query Task Sample Code
This interface will create a query task at TikTok, and it will return a task id. Users can use this id to check the status, get the result and cancel the result in the future.
Example
from pyrqs import rqs
category = 'video'
condition_groups = [
{
"operator": "and",
"conditions": [
{
"field": "region_code",
"operator": "eq",
"field_values": ["NL"]
}
]
}
]
fields = 'username,region_code,video_description,music_id,like_count'
limit = 1000
client = rqs.RQSClient()
task_id = client.create_query_task(category=category,
condition_groups=condition_groups,
fields=fields,
limit=limit,
start_date=start_date,
end_date=end_date,)Response
Key | Type | Description | Example |
task_id | int | Data query job task identifier | 12345 |
Check Query Task Status
Query Parameters
Key | Type | Description | Example | Required |
task_id | int | Data query job task identifier | 12345 | Yes |
Response
Key | Type | Description | Example | Required |
status | string | Data query job task status | Created AnalysisFailed Processing Completed Cancelled Validating | Yes |
Check Query Task Result Code Sample
Example
data = client.get_query_task_result(task_id)Cancel Query Task
Query Parameters
Key | Type | Description | Example | Required |
task_id | int | Data query job task identifier | 12345 | Yes |
Response
Key | Type | Description | Example |
success | bool | Whether the request was successfullycancelled | True |
Cancel Query Task Sample Code
Example
result = client.cancel_query_task(task_id)Get Query Task Result
Query Parameters
Key | Type | Description | Example | Required |
task_id | int | Data query job task identifier | 12345 | Yes |
Get_query_task_result_example
Example
data = client.get_query_task_result(task_id)Response
Key | Type | Description | Example |
result | string | Data fields returned from the query. Interface will only return the fields listed here. | id,video_description,create_time,region_code,share_count,view_count,like_count,comment_count,music_id,hashtag_names,username,effect_ids,playlist_id,voice_to_text,is_stem_verified,favorites_count,video_duration,hashtag_info_list,sticker_info_list,effect_info_list,video_label,video_mention_list,video_tag |
Query Video Data from TikTok via SDK
Example code
from pyrqs import rqs
import time
from datetime import datetime, timedelta
import json
category = 'video'
fields = 'video_id,create_date,video_length,username,region_code,music_id,effect_id,hashtag_name,view_count,comment_count'
limit = 100
client = rqs.RQSClient()
condition_groups = [
{
"operator": "and",
"conditions": [
{
"field": "video_description",
"operator": "IN",
"field_values": ["%tiktok%"]
},
{
"field": "hashtag_names,
"operator": "IN",
"field_values": ["tiktok"]
}
]
}
]
data = client.query(category=category, condition_groups=condition_groups, fields=fields, limit=limit)
print(data)