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

````