> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sorsa.io/llms.txt
> Use this file to discover all available pages before exploring further.

# 转推用户列表

> 分页返回转推过指定推文的用户，按转推时间排序，最新在前。每项包含转推者的资料数据。注意：响应使用用户格式（`common.UsersResponse`），而非推文格式。



## OpenAPI

````yaml openapi-zh-Hans.json POST /retweeters
openapi: 3.0.3
info:
  contact: {}
  title: Sorsa.io API
  version: '3.0'
servers:
  - url: https://api.sorsa.io/v3
security: []
paths:
  /retweeters:
    post:
      tags:
        - 推文
      summary: 转推用户列表
      description: >-
        分页返回转推过指定推文的用户，按转推时间排序，最新在前。每项包含转推者的资料数据。注意：响应使用用户格式（`common.UsersResponse`），而非推文格式。
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/tweets.RetweetsReq'
        description: 转推请求
        required: true
        x-originalParamName: payload
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/common.UsersResponse'
          description: 成功
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: 请求无效
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: 禁止访问
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: 未找到
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: 服务器内部错误
      security:
        - ApiKeyAuth: []
components:
  schemas:
    tweets.RetweetsReq:
      properties:
        next_cursor:
          description: 上一次响应中的分页游标。
          example: JKHSJFHADUYJKSDy2y3u123
          type: string
        tweet_link:
          description: 完整推文 URL（例如 `https://x.com/user/status/123`）或推文 ID。
          type: string
      type: object
    common.UsersResponse:
      properties:
        next_cursor:
          description: 用于获取下一页结果的游标。没有更多页面时为 null 或缺失。
          type: string
        users:
          description: 用户资料对象数组。
          items:
            $ref: '#/components/schemas/common.User'
          type: array
      type: object
    handler.ErrorResponse:
      properties:
        message:
          type: string
      type: object
    common.User:
      properties:
        bio_urls:
          description: 用户简介中的 URL。
          items:
            type: string
          type: array
        can_dm:
          description: 账号是否接受私信。
          example: false
          type: boolean
        created_at:
          description: 账号创建日期，采用 ISO 8601 格式。
          example: '2009-06-02T20:12:29Z'
          type: string
        description:
          description: 个人资料简介文本。
          example: Bio text
          type: string
        display_name:
          description: 用户的显示名称。
          example: Elon Musk
          type: string
        favourites_count:
          description: 此用户点赞的推文总数。
          example: 1200
          type: integer
        followers_count:
          description: 关注此用户的账号数。
          example: 100000
          type: integer
        followings_count:
          description: 此用户关注的账号数。
          example: 500
          type: integer
        id:
          description: 唯一 Twitter/X 用户 ID。
          example: '44196397'
          type: string
        location:
          description: 用户资料中的所在地文本。
          example: Austin, TX
          type: string
        media_count:
          description: 此用户发布的媒体总数。
          example: 300
          type: integer
        pinned_tweet_ids:
          description: 用户置顶推文的 ID。
          items:
            type: string
          type: array
        possibly_sensitive:
          description: 账号是否被标记为可能包含敏感内容。
          example: false
          type: boolean
        profile_background_image_url:
          description: 用户个人资料背景图片的 URL。
          example: https://pbs.twimg.com/profile_banners/44196397/123
          type: string
        profile_image_url:
          description: 用户头像图片的 URL。
          example: https://pbs.twimg.com/profile_images/123/photo.jpg
          type: string
        protected:
          description: 账号的推文是否受保护（私密）。
          example: false
          type: boolean
        tweets_count:
          description: 此用户发布的推文总数。
          example: 5000
          type: integer
        username:
          description: 当前 Twitter/X 用户名（不含 @）。
          example: elonmusk
          type: string
        verified:
          description: 账号是否有认证徽章。
          example: true
          type: boolean
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: ApiKey
      type: apiKey

````