> ## 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.

# 粉丝

> 分页返回关注指定账号的用户，每页最多 200 份用户资料。使用返回的 `next_cursor` 加载后续页面。请且仅请提供 `user_link`、`username` 或 `user_id` 中的一项来指定用户。



## OpenAPI

````yaml openapi-zh-Hans.json GET /followers
openapi: 3.0.3
info:
  contact: {}
  title: Sorsa.io API
  version: '3.0'
servers:
  - url: https://api.sorsa.io/v3
security: []
paths:
  /followers:
    get:
      tags:
        - 用户数据
      summary: 粉丝
      description: >-
        分页返回关注指定账号的用户，每页最多 200 份用户资料。使用返回的 `next_cursor` 加载后续页面。请且仅请提供
        `user_link`、`username` 或 `user_id` 中的一项来指定用户。
      parameters:
        - description: 用户 Twitter/X 个人资料的完整 URL。
          in: query
          name: user_link
          schema:
            type: string
        - description: Twitter/X 用户名（不含 @）。
          in: query
          name: username
          schema:
            type: string
        - description: Twitter/X 数字用户 ID。
          in: query
          name: user_id
          schema:
            type: string
        - description: 上一次响应中的分页游标。
          in: query
          name: next_cursor
          schema:
            format: int64
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/common.UsersResponse'
          description: 成功
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: 请求无效
        '401':
          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: 未找到
        '429':
          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:
    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

````