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

# 社群成员

> 分页返回指定 Twitter/X 社群成员的用户资料。每份资料包含显示名称、简介、粉丝统计、头像、账号创建日期和认证状态。



## OpenAPI

````yaml openapi-zh-Hans.json POST /community-members
openapi: 3.0.3
info:
  contact: {}
  title: Sorsa.io API
  version: '3.0'
servers:
  - url: https://api.sorsa.io/v3
security: []
paths:
  /community-members:
    post:
      tags:
        - 社群
      summary: 社群成员
      description: 分页返回指定 Twitter/X 社群成员的用户资料。每份资料包含显示名称、简介、粉丝统计、头像、账号创建日期和认证状态。
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/community.CommunityMembersReq'
        description: 社群成员请求
        required: true
        x-originalParamName: payload
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/common.CommunityUsersResponse'
          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:
    community.CommunityMembersReq:
      properties:
        community_link:
          description: 社群 ID 或完整社群 URL。
          example: '1966045657589813686'
          type: string
        next_cursor:
          description: 上一次响应中的分页游标。
          example: '123'
          type: string
      required:
        - community_link
      type: object
    common.CommunityUsersResponse:
      properties:
        next_cursor:
          description: 用于获取下一页结果的游标。没有更多页面时为 null 或缺失。
          type: string
        users:
          description: 用户资料对象数组。
          items:
            $ref: '#/components/schemas/common.CommunityUser'
          type: array
      type: object
    handler.ErrorResponse:
      properties:
        message:
          type: string
      type: object
    common.CommunityUser:
      properties:
        display_name:
          description: 用户的显示名称。
          example: Elon Musk
          type: string
        id:
          description: 唯一 Twitter/X 用户 ID。
          example: '44196397'
          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
        username:
          description: 当前 Twitter/X 用户名（不含 @）。
          example: elonmusk
          type: string
        verified:
          description: 账号是否有认证徽章。
          example: true
          type: boolean
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: ApiKey
      type: apiKey

````