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

# Get My Info

> Fetch your own ChatSyncs account profile via the API — plan/package, subscriber and message-credit usage, and the connected WhatsApp bots on the account. Use when a developer asks how to check their own account's usage limits or connected numbers programmatically.

Returns your own ChatSyncs account's profile — plan, usage against your subscriber and message
credit limits, and the WhatsApp numbers connected to the account.


## OpenAPI

````yaml GET /user/myInfo
openapi: 3.1.0
info:
  title: ChatSyncs Developer API
  version: 1.0.0
  description: >-
    REST API for sending WhatsApp messages and managing subscribers through
    ChatSyncs.
servers:
  - url: https://platform.chatsyncs.com/api/v1
security: []
paths:
  /user/myInfo:
    get:
      tags:
        - User API
      summary: Get My Info
      operationId: getMyInfo
      parameters:
        - name: apiToken
          in: query
          required: true
          schema:
            type: string
            example: API-KEY
          description: >-
            Your ChatSyncs API key (not a WhatsApp/Meta access token). [Where to
            find it](/developer-api/finding-ids#api-token-apitoken).
      responses:
        '200':
          description: >-
            Standard ChatSyncs response. `status` is `"1"` on success and `"0"`
            on failure.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    description: '`"1"` = success, `"0"` = failure.'
                  message:
                    type: object
                    description: >-
                      The account's profile, plan, usage, and connected bot
                      details.
              examples:
                success:
                  summary: Success
                  value:
                    status: '1'
                    message:
                      user_id: 114
                      user_type: Member
                      name: Member
                      email: member@gmail.com
                      mobile: '3555757'
                      package_name: Premium1
                      expired_date: '2025-07-02 00:00:00'
                      created_at: '2022-03-26 10:55:29'
                      status: '1'
                      last_login_at: '2024-07-24 11:59:58'
                      last_login_ip: 127.0.0.1
                      agent_has_ppu: '0'
                      agent_ppu_remaining: -1
                      bot_subscriber_data:
                        limit: '5000'
                        count: '1'
                      message_credit_data:
                        limit: unlimited
                        used: 0
                      whatsapp_bots_details:
                        - display_phone_number: +91 97031 XXXX
                          phone_number_id: 11906XXXXX40020
                          whatsapp_business_account_id: 10039XXXX785XX
                          whatsapp_business_name: ChatSyncs

````