全部
在线测试
抖音验号
接口名称: 生成二维码 url
接口地址: http://api.vv-tool.com/tool/accounts/set-tiktok-url
接口介绍: 该接口生成二维码和 session_id 点击查看详情
请求方式: GET
返回格式: JSON
接口收费: 扣账号余额
频率限制: 10 次/秒
请求头参数
点击查看请求头详情
参数 | 类型 | 必选 | 值 | 示例 |
---|---|---|---|---|
Authorization | string | 是 | 授权 access_token | Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx |
请求参数
名称 | 类型 | 必须 | 示例值 | 描述 |
---|---|---|---|---|
douyin_mark | string | 是 | 840159148 | 抖音号 |
squeeze_page | string | 否 | 12345 | 落地页编号,传无效或不传则走默认 |
请求示例
douyin_mark:840159148
请求代码示例
cURL请求代码示例
curl --location --request GET 'http://api.vv-tool.com/tool/accounts/set-tiktok-url?douyin_mark=9134fe9b333842038473e894fc1e5f58' \
--header 'Authorization: Bearer 012c19eae2da038036f3c7e78e3c532a4cf4b770' \
--header 'Cookie: PHPSESSID=rnntqvfhvig5goubj8lfc0ahuk; _csrf=8361ded35436f800c0b2d8e5ff6c24aaeeec2f30ebaf8024eeba168b56833c67a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22JolzvaJApH-Z2fl7H7u50kxyPE17rlr4%22%3B%7D'
PHP请求代码示例
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'http://api.vv-tool.com/tool/accounts/set-tiktok-url?douyin_mark=840159148',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => array(
'Authorization: Bearer 012c19eae2da038036f3c7e78e3c532a4cf4b770',
'Cookie: PHPSESSID=rnntqvfhvig5goubj8lfc0ahuk; _csrf=8361ded35436f800c0b2d8e5ff6c24aaeeec2f30ebaf8024eeba168b56833c67a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22JolzvaJApH-Z2fl7H7u50kxyPE17rlr4%22%3B%7D'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
JAVA请求代码示例
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
Request request = new Request.Builder()
.url("http://api.vv-tool.com/tool/accounts/set-tiktok-url?douyin_mark=840159148")
.method("GET", null)
.addHeader("Authorization", "Bearer 012c19eae2da038036f3c7e78e3c532a4cf4b770")
.addHeader("Cookie", "PHPSESSID=rnntqvfhvig5goubj8lfc0ahuk; _csrf=8361ded35436f800c0b2d8e5ff6c24aaeeec2f30ebaf8024eeba168b56833c67a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22JolzvaJApH-Z2fl7H7u50kxyPE17rlr4%22%3B%7D")
.build();
Response response = client.newCall(request).execute();
响应参数
参数 | 类型 | 描述 |
---|---|---|
code | int | 返回状态码 |
msg | string | 返回码描述 |
msec | int | 执行时间 |
time | int | 结果返回时间 |
data | object | 数据体 |
session_id | string | 任务编号 |
url | string | 二维码 url |
withholding_money | int | 该接口扣费金额(点券) |
返回数据
{
"code": 0,
"msg": "成功",
"msec": 2398,
"time": 1620984487,
"data": {
"session_id":"1111111111111111",
"url":"www.baidu.com",
"withholding_money":0
}
}
接口名称: 获取抖音数据
接口地址: http://api.vv-tool.com/tool/accounts/get-tiktok-data
接口介绍: 抖音领取优惠券,领取红包或则点开指定的视频即可获得 获取抖音数据点击查看详情
请求方式: GET
返回格式: JSON
接口收费: 扣账号余额
频率限制: 10 次/秒
请求头参数
参数 | 类型 | 必选 | 值 | 示例 |
---|---|---|---|---|
Authorization | string | 是 | 授权 access_token | Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx |
请求参数
参数 | 类型 | 必选 | 描述 |
---|---|---|---|
session_id | string | 否 | 任务编号 |
phone | string | 否 | 绑定手机号 |
douyin_mark | string | 否 | 抖音号 |
douyin_mark,phone,session_id 三个必须传其中一个 |
请求示例
session_id:d286e5fe4adc4e7dsqsqqqq
phone:139456912335
douyin_mark:840159148
请求代码示例
cURL请求代码示例
curl --location --request GET 'http://api.vv-tool.com/tool/accounts/get-tiktok-data?session_id=9134fe9b333842038473e894fc1e5f58' \
--header 'Authorization: Bearer 012c19eae2da038036f3c7e78e3c532a4cf4b770' \
--header 'Cookie: PHPSESSID=rnntqvfhvig5goubj8lfc0ahuk; _csrf=8361ded35436f800c0b2d8e5ff6c24aaeeec2f30ebaf8024eeba168b56833c67a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22JolzvaJApH-Z2fl7H7u50kxyPE17rlr4%22%3B%7D'
PHP请求代码示例
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'http://api.vv-tool.com/tool/accounts/get-tiktok-data?session_id=9134fe9b333842038473e894fc1e5f58',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => array(
'Authorization: Bearer 012c19eae2da038036f3c7e78e3c532a4cf4b770',
'Cookie: PHPSESSID=rnntqvfhvig5goubj8lfc0ahuk; _csrf=8361ded35436f800c0b2d8e5ff6c24aaeeec2f30ebaf8024eeba168b56833c67a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22JolzvaJApH-Z2fl7H7u50kxyPE17rlr4%22%3B%7D'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
JAVA请求代码示例
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
Request request = new Request.Builder()
.url("http://api.vv-tool.com/tool/accounts/get-tiktok-data?session_id=9134fe9b333842038473e894fc1e5f58")
.method("GET", null)
.addHeader("Authorization", "Bearer 012c19eae2da038036f3c7e78e3c532a4cf4b770")
.addHeader("Cookie", "PHPSESSID=rnntqvfhvig5goubj8lfc0ahuk; _csrf=8361ded35436f800c0b2d8e5ff6c24aaeeec2f30ebaf8024eeba168b56833c67a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22JolzvaJApH-Z2fl7H7u50kxyPE17rlr4%22%3B%7D")
.build();
Response response = client.newCall(request).execute();
响应参数
参数 | 类型 | 描述 | 示例 |
---|---|---|---|
code | int | 返回状态码 | 0 |
msg | string | 返回码描述 | 1 |
msec | int | 执行时间 | 1 |
time | int | 结果返回时间 | 1 |
avatar | string | 账号头像 | https://example.com/x.jpeg |
city | string | 市 | 杭州 |
country | string | 注册国家 | 中国 |
sex | int | 性别: 1- 未知 ,2 - 男性,3- 女性 | 1 |
e_account_role | string | 类型:i-个人,m - 普通服务号,s- 企业服务号, k - 品牌服务号 | |
name | string | 抖音账号称呼 | 张三 |
province | string | 省 | 浙江 |
phone | string | 手机号 | 139456912335 |
result_list | [] | 抖音账号视频作品数据分析(账号近 7 天的数据,如果需要更多数据请反馈售后沟通) | |
new_transmit | int | 每日新增视频播放 | 300 |
total_content | int | 每日内容总数 | 300 |
new_content | int | 每日发布内容数 | 300 |
sum_fans | int | 每日总粉丝数 | 300 |
fresh_fans | int | 每天新粉丝数 | 300 |
fresh_like | int | 每日新增点赞 | 300 |
add_comment | int | 每日新增评论 | 300 |
add_share | int | 每日新增分享 | 300 |
people_visit | int | 每日抖音主页访客数 | 300 |
date | string | 日期 | yyyy-MM-dd |
antistop | string | 账号标签词数字越低说明潜在搜索可能性越高 | 宝马(18) |
fans_antistop | string | 粉丝对抖音号评价标签,数字越高说明契合度越高 | 秀我一脸(12) |
interest_distributions | [] | 账号标签分布,关键词指数越大说明标签的喜好程度越大 | keyworkd: ["电影""(2222),"干饭"(2222),"推理"(2222)...] |
keyworkd | string | 标签 | |
count | int | 所有粉丝的数量 | 10000 |
fans_age_distributes | [] | 粉丝年龄分布(年龄数量) | keyold: ["1-23"(2222), "24-30"(2222), "31-40"(4444), "41-50"(4444), "50-"(4444) |
keyold | string | 年龄 | |
territory_distributes | [] | 账号的粉丝地域分布(数量) | key_district: ["河南(6999)","河北(6999)","江苏(6999)"...]]] |
key_district | string | 地域 | |
fans_list | [] | 粉丝列表 | 默认返回抖音前 100 用户,如果需要更多数据请反馈售后沟通 |
sex | int | 性别: 1 - 未知, 2 - 男性, 3 - 女性 | 1 |
name | string | 粉丝抖音账号称呼 | 张三 |
avatar | string | 粉丝的头像 | https://example.com/x.jpeg |
city | string | 粉丝账号的城市 | 杭州 |
province | string | 省 | 浙江 |
country | string | 注册国家 | 中国 |
attention_list | [] | 关注列表 | 默认返回抖音前 100 用户,如果需要更多数据请反馈售后沟通 |
name | string | 关注的抖音账号称呼 | 张三 |
avatar | string | 账号头像 | https://example.com/x.jpeg |
city | string | 市 | 杭州 |
province | string | 省 | 浙江 |
country | string | 注册国家 | 中国 |
sex | int | 性别: 1- 未知 ,2- 男性,3- 女性 | 1 |
withholding_money | int | 该接口扣费金额(点券) |
返回数据
{
"code": 0,
"msg": "成功",
"msec": 614,
"time": 1602924397,
"data": {
"withholding_money":0,
"avatar": "https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-avt-0015_d379ecea4e8d11cf66a190d4a9e0bfc3.jpeg?from=4010531038",
"city": "杭州",
"country": "中国",
"sex": 1,
"e_account_role": "i",
"name": "我不知道明天",
"province": "浙江",
"count": 3,
"fans_list": [
{
"sex": 2,
"name": "查",
"avatar": "https://p3.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_921526b48622455f9937c5ef97539a4b.jpeg?from=4010531038",
"city": "",
"province": "",
"country": ""
}
],
"phone": "18768452697",
"attention_list": [],
"result_list": [
{
"new_transmit": 0,
"total_content": 0,
"new_content": 0,
"sum_fans": 3,
"fresh_fans": 0,
"fresh_like": 0,
"add_comment": 0,
"add_share": 0,
"people_visit": 0,
"date": "2022-02-24"
},
{
"new_transmit": 0,
"total_content": 0,
"new_content": 0,
"sum_fans": 3,
"fresh_fans": 0,
"fresh_like": 0,
"add_comment": 0,
"add_share": 0,
"people_visit": 0,
"date": "2022-02-25"
},
{
"new_transmit": 1,
"total_content": 0,
"new_content": 1,
"sum_fans": 3,
"fresh_fans": 0,
"fresh_like": 0,
"add_comment": 0,
"add_share": 0,
"people_visit": 0,
"date": "2022-02-26"
},
{
"new_transmit": 3,
"total_content": 0,
"new_content": 3,
"sum_fans": 3,
"fresh_fans": 0,
"fresh_like": 0,
"add_comment": 0,
"add_share": 0,
"people_visit": 0,
"date": "2022-02-27"
},
{
"new_transmit": 0,
"total_content": 0,
"new_content": 0,
"sum_fans": 3,
"fresh_fans": 0,
"fresh_like": 0,
"add_comment": 0,
"add_share": 0,
"people_visit": 0,
"date": "2022-02-28"
},
{
"new_transmit": 0,
"total_content": 0,
"new_content": 0,
"sum_fans": 3,
"fresh_fans": 0,
"fresh_like": 0,
"add_comment": 0,
"add_share": 0,
"people_visit": 0,
"date": "2022-03-01"
},
{
"new_transmit": 0,
"total_content": 0,
"new_content": 0,
"sum_fans": 3,
"fresh_fans": 0,
"fresh_like": 0,
"add_comment": 0,
"add_share": 0,
"people_visit": 0,
"date": "2022-03-02"
}
],
"antistop": "",
"fans_antistop": "",
"interest_distributions": [],
"fans_age_distributes": [],
"territory_distributes": []
}
}
接口名称: 查询二维码状态
接口地址: http://api.vv-tool.com/tool/accounts/sel-tiktok-stu
接口介绍: 查询二维码状态 点击查看详情
请求方式: GET
返回格式: JSON
接口收费: 扣账号余额
频率限制: 10 次/秒
请求头参数
点击查看请求头详情
参数 | 类型 | 必选 | 值 | 示例 |
---|---|---|---|---|
Authorization | string | 是 | 授权 access_token | Bearer 1798c6aadec33d1bc2f5b707f1049aefexxxx |
请求参数
名称 | 类型 | 必须 | 示例值 | 描述 |
---|---|---|---|---|
session_id | string | 是 | 12345 | 任务编号 |
请求示例
session_id:1133423432412
请求代码示例
cURL请求代码示例
curl --location --request GET 'http://api.vv-tool.com/tool/accounts/sel-tiktok-stu?session_id=9134fe9b333842038473e894fc1e5f58' \
--header 'Authorization: Bearer 012c19eae2da038036f3c7e78e3c532a4cf4b770' \
--header 'Cookie: PHPSESSID=rnntqvfhvig5goubj8lfc0ahuk; _csrf=8361ded35436f800c0b2d8e5ff6c24aaeeec2f30ebaf8024eeba168b56833c67a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22JolzvaJApH-Z2fl7H7u50kxyPE17rlr4%22%3B%7D'
PHP请求代码示例
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'http://api.vv-tool.com/tool/accounts/sel-tiktok-stu?session_id=9134fe9b333842038473e894fc1e5f58',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => array(
'Authorization: Bearer 012c19eae2da038036f3c7e78e3c532a4cf4b770',
'Cookie: PHPSESSID=rnntqvfhvig5goubj8lfc0ahuk; _csrf=8361ded35436f800c0b2d8e5ff6c24aaeeec2f30ebaf8024eeba168b56833c67a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22JolzvaJApH-Z2fl7H7u50kxyPE17rlr4%22%3B%7D'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
JAVA请求代码示例
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
Request request = new Request.Builder()
.url("http://api.vv-tool.com/tool/accounts/sel-tiktok-stu?session_id=9134fe9b333842038473e894fc1e5f58")
.method("GET", null)
.addHeader("Authorization", "Bearer 012c19eae2da038036f3c7e78e3c532a4cf4b770")
.addHeader("Cookie", "PHPSESSID=rnntqvfhvig5goubj8lfc0ahuk; _csrf=8361ded35436f800c0b2d8e5ff6c24aaeeec2f30ebaf8024eeba168b56833c67a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%22JolzvaJApH-Z2fl7H7u50kxyPE17rlr4%22%3B%7D")
.build();
Response response = client.newCall(request).execute();
响应参数
参数 | 类型 | 描述 |
---|---|---|
code | int | 返回状态码 |
msg | string | 返回码描述 |
msec | int | 执行时间 |
time | int | 结果返回时间 |
data | object | 数据体 |
status | string | 状态 1:未扫码,2:扫码成功,3 已经过期(如果是 3 已过期的状态,会将消耗的点券退还到账户上面,退回账户点券数退还 withholding_money) |
url | string | 二维码 url |
withholding_money | int | 该接口扣费金额(点券) |
返回数据
{
"code": 0,
"msg": "成功",
"msec": 2398,
"time": 1620984487,
"data": {
"status":"3",
"url":"www.baidu.com",
"withholding_money":0
}
}
响应代码
代码 | 代码描述 | 解决方案 |
---|---|---|
0 | 成功 | |
100 | 请求参数错误 | 检查您的请求参数是否正确 |
101 | 请求超时,请重试 | 检查您的网络情况或者联系客服解决 |
103 | 旺旺账号不存在 | 检查您输入的旺旺号是否正确 |
200 | 系统错误,请联系客服 | 检查您的接口地址填写是否正确,其他问题联系客服解决 |
203 | 暂不支持当前接口 | |
204 | 请求异常:无该接口权限,请前往官网开通正式接口。 | 前往官网开通该接口权限 |
204 | 请求异常:API 调用次数不足,请前往网站兑换次数。 | 前往官网充值该接口调用次数 |
401 | 身份凭证无效 | 在请求头中添加 access_token |