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

# Get Whatsapp Info

## Overview

The "Get WhatsApp Info" endpoint allows users to retrieve their WhatsApp integration details with Toingg. By sending a GET request to the `/get_whatsapp_info` endpoint, users can access their WhatsApp setup information, facilitating seamless interaction and communication management.


## OpenAPI

````yaml GET /get_whatsapp_info
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.toingg.com/api/v3
security: []
paths:
  /get_whatsapp_info:
    get:
      tags:
        - Whatsapp Integration
      summary: Get Whatsapp Info
      operationId: get_whatsapp_info_get_whatsapp_info_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - OAuth2PasswordBearer: []
components:
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: login

````