Instagramクリエイターのプロフィールを取得(リアルタイム)

10 件のエンドポイント • ベース: https://openapi.scdata.cc

持久化データベースではなく、リクエスト時にInstagramから直接クリエイターのプロフィールを収集します。鮮度が重要な場合に使用してください。リアルタイム呼び出しはデータベース読み取りより多くのクォータを消費します。

GET/api/v1/instagram/realtime/user/info

クォータ消費: このエンドポイントへの成功したリクエスト 1 件あたり、プランのクォータが 100 単位消費されます。

プラットフォーム共通パス

/api/v1/{platform}/realtime/user/info

利用可能なプラットフォーム

リクエストパラメータ

必須パラメータ

このエンドポイントに必須パラメータはありません。

任意パラメータ

名前位置説明
usernamequerystringusername
example: nike
user_idquerystringuser_id
example: 13460080

レスポンスフィールド

名前説明
successbooleanSuccess
codeintegerCode
messagestringMessage
dataobject-
data.user_idstringuser_id
data.usernamestringusername
data.full_namestringfull_name
data.profile_urlstringProfile URL
data.descriptionstringBio
data.follower_countintegerFollower count
data.following_countintegerFollowing count
data.media_countintegerPost count
data.is_privatebooleanPrivate account

お試し実行

https://openapi.scdata.cc/api/v1/instagram/realtime/user/info
ダッシュボードのAPIキーを選択
リクエストを送信する前にAPIキーを入力してください。ダッシュボードを開く

クエリパラメータ

username
user_id

cURL の例

bash
curl -X GET "https://openapi.scdata.cc/api/v1/instagram/realtime/user/info" \
-H "Authorization: YOUR_API_KEY"

レスポンス例 (200 application/json)

json
{
"success": true,
"code": 200,
"message": "Request successful",
"data": {
"user_id": "string",
"username": "string",
"full_name": "string",
"profile_url": "string",
"avatar": "string",
"verified": true,
"description": "string",
"follower_count": 0,
"following_count": 0,
"media_count": 0,
"is_private": true
}
}

ユースケース

  • キャンペーン前の更新契約直前に候補クリエイターの数値を更新し、当日のオーディエンス規模を契約に反映します。
  • データベースの欠落補完データベース検索でクリエイターが見つからない場合、リアルタイム収集でプロフィールを取得します。

関連エンドポイント