Saltar al contenido
Twexapi
Español
Esc
navegarabrir⌘Jvista previa

Obtener timeline del usuario paginado

Obtener timeline del usuario paginado.

POST/twitter/{screen_name}/timeline/page
Autorización de API
AuthorizationBearer token · headerrequerido
Token Bearer global para TwexAPI. Incluido como: Authorization: Bearer <YOUR_TWEXAPI_KEY>.
Parámetros de ruta
screen_namestringrequerido
Nombre de usuario (Handle, sin @)
Cuerpo de la solicitud
requeridoapplication/json
next_cursorstring | any
Cursor para paginación de la siguiente página
Mostrar propiedades
Any of:
string
string
any
any
countinteger
Maximum number of tweets to return for this page.
min 1 · max 100 · default: 20
Respuestas
200Current page data and pagination metadata (has_next_page, next_cursor).
codeinteger
Código de estado HTTP (200 indica éxito)
default: 200
msgstring
Mensaje de respuesta (ej. 'success')
default: "success"
dataUserTweetItem[]requerido
Carga de datos devuelta por el endpoint
Mostrar propiedades
Array of UserTweetItem
tweet_idstringrequerido
ID numérico único del tweet
is_paid_promotionboolean
Whether the tweet is associated with a paid promotion
default: false
full_textstring | any
Texto completo del tweet
Mostrar propiedades
Any of:
string
string
any
any
created_atstring | any
Fecha y hora de creación (UTC)
Mostrar propiedades
Any of:
string
string
any
any
langstring | any
Tweet language
Mostrar propiedades
Any of:
string
string
any
any
conversation_idstring | any
Conversation ID
Mostrar propiedades
Any of:
string
string
any
any
bookmark_countinteger
Número de marcadores
default: 0
favorite_countinteger
Número de me gusta
default: 0
reply_countinteger
Número de respuestas
default: 0
retweet_countinteger
Número de retweets
default: 0
quote_countinteger
Quote count
default: 0
view_countstring | any
Número de visualizaciones
Mostrar propiedades
Any of:
string
string
any
any
view_count_statestring | any
View count state
Mostrar propiedades
Any of:
string
string
any
any
author_user_idstring | any
Author user ID
Mostrar propiedades
Any of:
string
string
any
any
author_screen_namestring | any
Nombre de usuario del autor (sin @)
Mostrar propiedades
Any of:
string
string
any
any
author_namestring | any
Nombre mostrado del autor
Mostrar propiedades
Any of:
string
string
any
any
author_is_blue_verifiedboolean | any
Blue verification flag
Mostrar propiedades
Any of:
boolean
boolean
any
any
author_verifiedboolean | any
Legacy verification flag
Mostrar propiedades
Any of:
boolean
boolean
any
any
author_is_verified_organization_affiliateboolean | any
Verified organization affiliate flag
Mostrar propiedades
Any of:
boolean
boolean
any
any
has_next_pagebooleanrequerido
Indica si hay más páginas disponibles
next_cursorstring | any
Cursor para paginación de la siguiente página
Mostrar propiedades
Any of:
string
string
any
any
requested_countintegerrequerido
Original count requested by the client.
effective_countintegerrequerido
Count after credit throttling was applied.
parsed_countintegerrequerido
Number of tweets actually parsed from the response.
422Error de validación de parámetros
detailValidationError[]
Mostrar propiedades
Array of ValidationError
locstring | integer[]requerido
Mostrar propiedades
Array of string | integer
Any of:
string
string
integer
integer
msgstringrequerido
Mensaje de respuesta (ej. 'success')
typestringrequerido
inputany
ctxobject
Consola interactivaPOST
Consola interactiva / Probar APIPOST
Live Console
🌐Servidor objetivo:https://api.twexapi.io
● Producción lista
🔍
Lectura de datos públicos (Solo clave TwexAPI, sin cookie de Twitter)

Este endpoint consulta datos públicos de Twitter: ¡no se requiere cuenta ni Cookie de Twitter! Simplemente ingrese su clave TwexAPI (Bearer Token) en "Autorización API" para probar.

🔑Autorización API
⚙️Parámetros (1)
📝Cuerpo de la solicitudapplication/json
📡
暂无响应数据

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

Solicitud
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
}'
Respuesta
{
  "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
}