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

사용자 타임라인 페이징 조회

사용자 타임라인 페이징 조회.

API 참조로 돌아가기
/Timeline Endpoints
POST/twitter/{screen_name}/timeline/page
API 인증
AuthorizationBearer token · header필수
TwexAPI 전역 인증 토큰 (Bearer Token). 헤더에 포함되어야 합니다: Authorization: Bearer <YOUR_TWEXAPI_KEY>.
경로 매개변수
screen_namestring필수
트위터 사용자명 (@ 제외)
요청 본문
필수application/json
next_cursorstring | any
다음 페이지 조회를 위한 커서 (Cursor)
속성 표시
Any of:
string
string
any
any
countinteger
Maximum number of tweets to return for this page.
min 1 · max 100 · default: 20
응답
200Current page data and pagination metadata (has_next_page, next_cursor).
codeinteger
HTTP 상태 코드 (200은 성공)
default: 200
msgstring
응답 메시지 (예: 'success')
default: "success"
dataUserTweetItem[]필수
엔드포인트가 반환한 핵심 데이터
속성 표시
Array of UserTweetItem
tweet_idstring필수
트윗 고유 ID
is_paid_promotionboolean
Whether the tweet is associated with a paid promotion
default: false
full_textstring | any
트윗 전체 텍스트
속성 표시
Any of:
string
string
any
any
created_atstring | any
작성 일시 (UTC 기준)
속성 표시
Any of:
string
string
any
any
langstring | any
Tweet language
속성 표시
Any of:
string
string
any
any
conversation_idstring | any
Conversation ID
속성 표시
Any of:
string
string
any
any
bookmark_countinteger
북마크 추가 수
default: 0
favorite_countinteger
좋아요 수
default: 0
reply_countinteger
답글 수
default: 0
retweet_countinteger
리트윗 수
default: 0
quote_countinteger
Quote count
default: 0
view_countstring | any
조회수 (Impression)
속성 표시
Any of:
string
string
any
any
view_count_statestring | any
View count state
속성 표시
Any of:
string
string
any
any
author_user_idstring | any
Author user ID
속성 표시
Any of:
string
string
any
any
author_screen_namestring | any
작성자 트위터 아이디 (@ 제외)
속성 표시
Any of:
string
string
any
any
author_namestring | any
작성자 표시 이름
속성 표시
Any of:
string
string
any
any
author_is_blue_verifiedboolean | any
Blue verification flag
속성 표시
Any of:
boolean
boolean
any
any
author_verifiedboolean | any
Legacy verification flag
속성 표시
Any of:
boolean
boolean
any
any
author_is_verified_organization_affiliateboolean | any
Verified organization affiliate flag
속성 표시
Any of:
boolean
boolean
any
any
has_next_pageboolean필수
다음 페이지 데이터 존재 여부
next_cursorstring | any
다음 페이지 조회를 위한 커서 (Cursor)
속성 표시
Any of:
string
string
any
any
requested_countinteger필수
Original count requested by the client.
effective_countinteger필수
Count after credit throttling was applied.
parsed_countinteger필수
Number of tweets actually parsed from the response.
422요청 매개변수 유효성 검사 오류
detailValidationError[]
속성 표시
Array of ValidationError
locstring | integer[]필수
속성 표시
Array of string | integer
Any of:
string
string
integer
integer
msgstring필수
응답 메시지 (예: 'success')
typestring필수
inputany
ctxobject
대화형 콘솔POST
대화형 콘솔 / API 테스트POST
Live Console
🌐대상 서버:https://api.twexapi.io
● 프로덕션 준비 완료
🔍
공개 데이터 조회 (TwexAPI 키만 필요, Twitter 쿠키 불필요)

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

🔑API 인증
⚙️요청 파라미터 (1)
📝요청 본문application/json
📡
暂无响应数据

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

요청 예시
curl -X POST "https://api.twexapi.io/twitter/Ian_Codes/timeline/page" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "next_cursor": "",
  "count": 20
}'
응답 예시
{
  "code": 200,
  "msg": "success",
  "data": [
    {
      "tweet_id": "string",
      "is_paid_promotion": false,
      "full_text": "string",
      "created_at": "string",
      "lang": "string",
      "conversation_id": "string",
      "bookmark_count": 0,
      "favorite_count": 0,
      "reply_count": 0,
      "retweet_count": 0,
      "quote_count": 0,
      "view_count": "string",
      "view_count_state": "string",
      "author_user_id": "string",
      "author_screen_name": "string",
      "author_name": "string",
      "author_is_blue_verified": true,
      "author_verified": true,
      "author_is_verified_organization_affiliate": true
    }
  ],
  "has_next_page": true,
  "next_cursor": "DAAHCgABHFeD5h9__-cLAAIAAAATMjAzODIzMzA5NTM4ODY4MDU5NAgAAwAAAAIAAA",
  "requested_count": 0,
  "effective_count": 0,
  "parsed_count": 0
}