본문으로 건너뛰기
Twexapi
한국어
Esc
이동열기⌘J미리보기

지정 수량 팔로잉 조회

지정 수량 팔로잉 조회.

API 참조로 돌아가기
/Followers & Following Endpoints
GET/twitter/following/{screen_name}/{count}
API 인증
AuthorizationBearer token · header필수
TwexAPI 전역 인증 토큰 (Bearer Token). 헤더에 포함되어야 합니다: Authorization: Bearer <YOUR_TWEXAPI_KEY>.
경로 매개변수
screen_namestring필수
트위터 사용자명 (@ 제외)
countinteger필수
The number of following to get.
응답
200A list of user info, or a task_id for large requests
codeinteger
HTTP 상태 코드 (200은 성공)
default: 200
msgstring
응답 메시지 (예: 'success')
default: "success"
dataUserInfo | any[] | FriendshipTaskData필수
엔드포인트가 반환한 핵심 데이터
속성 표시
Any of:
UserInfo | any[]
Array of UserInfo | any
Any of:
UserInfo
userIdstring필수
User ID
isBlueVerifiedboolean필수
Blue verification status
createdAtstring필수
Account creation date
createdAtDatetimestring | any
Account creation datetime in ISO format
속성 표시
Any of:
string
string
any
any
defaultProfileboolean필수
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[] | any
Pinned tweet IDs
속성 표시
Any of:
any[]
Array of any
any
any
any
possiblySensitiveboolean필수
Possibly sensitive flag
profileImageUrlHttpsstring필수
Profile image URL
usernamestring필수
Username
statusesCountinteger필수
Tweets count
translatorTypestring | any
Translator type
속성 표시
Any of:
string
string
any
any
verifiedboolean필수
Legacy verification status
verified_typestring | any
Verification badge type: blue, business, government, etc.
속성 표시
Any of:
string
string
any
any
withheldInCountriesany[] | any
Withheld in countries
속성 표시
Any of:
any[]
Array of any
any
any
any
protectedboolean필수
Protected account flag
urlstring | any
User profile URL
속성 표시
Any of:
string
string
any
any
descriptionUrlsany[] | any
Description URLs
속성 표시
Any of:
any[]
Array of any
any
any
any
urlsany[] | any
User URLs
속성 표시
Any of:
any[]
Array of any
any
any
any
pinnedTweetIdsany[] | any
Pinned tweet IDs
속성 표시
Any of:
any[]
Array of any
any
any
any
any
any
FriendshipTaskData
task_idstring필수
Task ID for polling status/next endpoints
reusedboolean필수
True if an in-flight task was reused
422요청 매개변수 유효성 검사 오류
detailValidationError[]
속성 표시
Array of ValidationError
locstring | integer[]필수
속성 표시
Array of string | integer
Any of:
string
string
integer
integer
msgstring필수
응답 메시지 (예: 'success')
typestring필수
inputany
ctxobject
대화형 콘솔GET
대화형 콘솔 / API 테스트GET
Live Console
🌐대상 서버:https://api.twexapi.io
● 프로덕션 준비 완료
🔍
공개 데이터 조회 (TwexAPI 키만 필요, Twitter 쿠키 불필요)

이 엔드포인트는 공개 Twitter 데이터를 조회합니다. Twitter 계정이나 쿠키가 필요하지 않습니다! 아래 "API 인증"에 TwexAPI 플랫폼 키 (Bearer Token)를 입력하여 바로 테스트하세요.

🔑API 인증
⚙️요청 파라미터 (2)
📡
暂无响应数据

请在「请求配置」中确认参数后,点击底部的「发送请求」按钮。

요청 예시
curl -X GET "https://api.twexapi.io/twitter/following/elonmusk/200" \
  -H "Authorization: Bearer YOUR_TOKEN"
응답 예시
{
  "code": 200,
  "msg": "success",
  "data": [
    {
      "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
      ]
    }
  ]
}