認証バッジフォロワー取得
認証バッジフォロワー取得.
APIリファレンスに戻る
/Followers & Following Endpoints
POST
/v3/twitter/users/verified-followersAPI 認証
AuthorizationBearer token · header必須TwexAPIのグローバル認証トークン (Bearer Token)。ヘッダーに含める必要があります:Authorization: Bearer <YOUR_TWEXAPI_KEY>。
リクエストボディ
必須application/jsonusernamestring必須Twitter username (with or without @).
countinteger | anyNumber of users to return per page (min 10, max 100).
default: 20
プロパティを表示プロパティを非表示
Any of:
integer
integerany
anycursorstring | anyページネーション用カーソル(初回は空文字列または未指定)
プロパティを表示プロパティを非表示
Any of:
string
stringany
anyレスポンス
200Verified followers page with cursor pagination.
codeinteger必須HTTP ステータスコード(200 は成功)
msgstring必須レスポンスメッセージ(例: 'success')
dataVerifiedFollowersData | any返却されるコアデータオブジェクトまたは配列
プロパティを表示プロパティを非表示
Any of:
VerifiedFollowersData
usersUserInfo[]必須Follower users on this page
プロパティを表示プロパティを非表示
Array of
UserInfouserIdstring必須User ID
isBlueVerifiedboolean必須Blue verification status
createdAtstring必須Account creation date
createdAtDatetimestring | anyAccount creation datetime in ISO format
プロパティを表示プロパティを非表示
Any of:
string
stringany
anydefaultProfileboolean必須Default profile flag
defaultProfileImageboolean必須Default profile image flag
descriptionstring必須プロフィール自己紹介文(Bio)
locationstring必須Location
fastFollowersCountinteger必須Fast followers count
favouritesCountinteger必須Likes count
followersCountinteger必須Followers count
followingCountinteger必須Following count
hasCustomTimelinesboolean必須Has custom timelines flag
isTranslatorboolean必須Is translator flag
listedCountinteger必須Listed count
mediaCountinteger必須Media count
namestring必須ユーザー表示名
normalFollowersCountinteger必須Normal followers count
pinnedTweetIdsStrany[] | anyPinned tweet IDs
プロパティを表示プロパティを非表示
Any of:
any[]
Array of
anyanyany
anypossiblySensitiveboolean必須Possibly sensitive flag
profileImageUrlHttpsstring必須Profile image URL
usernamestring必須Username
statusesCountinteger必須Tweets count
translatorTypestring | anyTranslator type
プロパティを表示プロパティを非表示
Any of:
string
stringany
anyverifiedboolean必須Legacy verification status
verified_typestring | anyVerification badge type: blue, business, government, etc.
プロパティを表示プロパティを非表示
Any of:
string
stringany
anywithheldInCountriesany[] | anyWithheld in countries
プロパティを表示プロパティを非表示
Any of:
any[]
Array of
anyanyany
anyprotectedboolean必須Protected account flag
urlstring | anyUser profile URL
プロパティを表示プロパティを非表示
Any of:
string
stringany
anydescriptionUrlsany[] | anyDescription URLs
プロパティを表示プロパティを非表示
Any of:
any[]
Array of
anyanyany
anyurlsany[] | anyUser URLs
プロパティを表示プロパティを非表示
Any of:
any[]
Array of
anyanyany
anypinnedTweetIdsany[] | anyPinned tweet IDs
プロパティを表示プロパティを非表示
Any of:
any[]
Array of
anyanyany
anyhas_next_pageboolean必須次ページが存在するかどうか(true の場合さらにデータあり)
next_cursorstring | any次ページ取得用のカーソル(Cursor)。has_next_page が true の場合に指定
プロパティを表示プロパティを非表示
Any of:
string
stringany
anyany
any422パラメータバリデーションエラー
detailValidationError[]プロパティを表示プロパティを非表示
Array of
ValidationErrorlocstring | integer[]必須プロパティを表示プロパティを非表示
Array of
string | integerAny of:
string
stringinteger
integermsgstring必須レスポンスメッセージ(例: 'success')
typestring必須inputanyctxobject⚡インタラクティブテストPOST
⚡インタラクティブテスト / Try APIPOSTLive Console
🌐対象サーバー:
https://api.twexapi.io● 本番環境レディ
🔍
公開データ取得(TwexAPIキーのみ、Twitter Cookie不要)
本エンドポイントは公開Twitterデータの検索・取得用です。TwitterアカウントやCookieは一切不要です!下記の「API認証」に TwexAPIプラットフォームキー (Bearer Token) を入力するだけで即座にテストできます。
🔑API 認証
📝リクエストボディapplication/json
📡
暂无响应数据
请在「请求配置」中确认参数后,点击底部的「发送请求」按钮。
リクエスト例
curl -X POST "https://api.twexapi.io/v3/twitter/users/verified-followers" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"username": "elonmusk",
"count": 20,
"cursor": ""
}'const response = await fetch("https://api.twexapi.io/v3/twitter/users/verified-followers", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_TOKEN",
"Content-Type": "application/json"
},
body: JSON.stringify({
"username": "elonmusk",
"count": 20,
"cursor": ""
})
});import requests
response = requests.post(
"https://api.twexapi.io/v3/twitter/users/verified-followers",
headers={
"Authorization": "Bearer YOUR_TOKEN",
"Content-Type": "application/json"
},
json={
"username": "elonmusk",
"count": 20,
"cursor": ""
},
)レスポンス例
{
"code": 200,
"msg": "success",
"data": {
"users": [
{
"userId": "string",
"isBlueVerified": true,
"createdAt": "string",
"createdAtDatetime": "string",
"defaultProfile": true,
"defaultProfileImage": true,
"description": "string",
"location": "string",
"fastFollowersCount": 0,
"favouritesCount": 0,
"followersCount": 0,
"followingCount": 0,
"hasCustomTimelines": true,
"isTranslator": true,
"listedCount": 0,
"mediaCount": 0,
"name": "string",
"normalFollowersCount": 0,
"pinnedTweetIdsStr": [
null
],
"possiblySensitive": true,
"profileImageUrlHttps": "string",
"username": "string",
"statusesCount": 0,
"translatorType": "string",
"verified": true,
"verified_type": "blue",
"withheldInCountries": [
null
],
"protected": true,
"url": "string",
"descriptionUrls": [
null
],
"urls": [
null
],
"pinnedTweetIds": [
null
]
}
],
"has_next_page": true,
"next_cursor": ""
}
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}