- Scrumball-API
- Code-状态码
- tiktok
- instagram
- youtube
- 受众画像(audience)
- twitch
用户信息
GET
/api/v1/instagram/user/info
instagram
请求参数
Query 参数
username
string
Username
示例值:
nike
Header 参数
Authorization
string
可选
默认值:
{{auth_key}}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://openapi.scdata.cc/api/v1/instagram/user/info?username=nike' \
--header 'Authorization: '
返回响应
🟢200成功示例
application/json
Body
success
boolean
Success
默认值:
true
code
integer
Code
默认值:
200
message
string
Message
默认值:
请求成功
data
必需
Any of
user_id
User Id
related_platforms
Related Platforms
username
Username
nickname
Nickname
avatar
Avatar
description
Description
channel_url
Channel Url
follower_count
Follower Count
country
Country
language
Language
gender
Gender
is_business_account
Is Business Account
is_verified
Is Verified
tags
Tags
publish_count_month
Publish Count Month
last_publish_at
Last Publish At
total_media_count
Total Media Count
total_video_count
Total Video Count
avg_engagement_rate_30
Avg Engagement Rate 30
avg_like_count_30
Avg Like Count 30
avg_comment_count_30
Avg Comment Count 30
last_update_at
Last Update At
示例
{
"success": true,
"code": 200,
"message": "请求成功",
"data": {
"user_id": "13460080",
"related_platforms": [
{
"platform": "youtube",
"platform_url": "https://www.youtube.com/channel/UCUFgkRb0ZHc4Rpq15VRCICA"
},
{
"platform": "tiktok",
"platform_url": "https://www.tiktok.com/@nike"
}
],
"username": "nike",
"nickname": "Nike",
"avatar": "https://img.scrumball.cn/instagram/Fmdqq-Buda5slMf7sFORXxN_QKpY",
"description": "Breaking4: Faith Kipyegon vs. the 4-Minute Mile. Witness history on June 26th.",
"channel_url": "https://www.instagram.com/nike/",
"follower_count": 300572085,
"country": "US",
"language": "en",
"gender": "male",
"is_business_account": true,
"is_verified": true,
"tags": [
"#NikeFootball",
"#Jumpman"
],
"publish_count_month": 11,
"last_publish_at": "2025-06-09",
"total_media_count": 1587,
"total_video_count": 18,
"avg_engagement_rate_30": "0.04",
"avg_like_count_30": "105020.91",
"avg_comment_count_30": "398.36",
"last_update_at": "2025-06-10 09:32:49"
}
}
🟠422参数错误