> ## 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アカウントの「このアカウントについて」から、国、ユーザー名の変更総数、最後の変更日時などを返します。`user_link`、`username`、`user_id`のうち1つだけを指定してください。



## OpenAPI

````yaml /openapi-ja.json get /about
openapi: 3.0.3
info:
  contact: {}
  title: Sorsa.io API
  version: '3.0'
servers:
  - url: https://api.sorsa.io/v3
security: []
paths:
  /about:
    get:
      tags:
        - ユーザーデータ
      summary: アカウントの詳細情報
      description: >-
        Twitter/Xアカウントの「このアカウントについて」から、国、ユーザー名の変更総数、最後の変更日時などを返します。`user_link`、`username`、`user_id`のうち1つだけを指定してください。
      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
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/usersdata.AboutRes'
          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:
    usersdata.AboutRes:
      properties:
        affiliate_username:
          description: アカウントに関連付けられた組織のユーザー名。
          example: username
          type: string
        country:
          description: アカウントに関連付けられた国。
          example: United States
          type: string
        is_blue_verified:
          description: アカウントがBlue認証済みか。
          example: true
          type: boolean
        last_username_change_at:
          description: 最後にユーザー名を変更した日時。ISO 8601形式。
          example: '2021-01-01T00:00:00Z'
          type: string
        premium_start_at:
          description: Premiumアカウントの開始日。ISO 8601形式。
          example: '2021-01-01T00:00:00Z'
          type: string
        source:
          description: アカウントの利用元。
          example: Twitter
          type: string
        username_change_count:
          description: ユーザー名の変更総数。
          example: 1
          type: integer
      type: object
    handler.ErrorResponse:
      properties:
        message:
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: ApiKey
      type: apiKey

````