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

# Get Account

> Returns a WhatsApp Business Account from the system



## OpenAPI

````yaml api-reference/openapi.json get /api/v1/whatsapp-accounts/{id}/
openapi: 3.0.3
info:
  title: Wassist API
  version: 1.0.0
  description: API for building WhatsApp AI agents
servers:
  - url: https://backend.wassist.app
    description: Production
  - url: http://localhost:8050
    description: Development
security: []
tags:
  - name: Agents
    description: Create and manage AI agents
  - name: Conversations
    description: Chat conversations and messages
  - name: WhatsApp
    description: WhatsApp Business account management
  - name: Contacts
    description: Contact management
  - name: Integrations
    description: Third-party integrations
paths:
  /api/v1/whatsapp-accounts/{id}/:
    get:
      tags:
        - api
      description: >-
        ViewSet for managing WhatsApp Business Accounts.


        Endpoints:

        - GET /whatsapp-accounts/ - List all connected accounts

        - GET /whatsapp-accounts/{id}/ - Get account details

        - POST /whatsapp-accounts/{id}/deploy-agent/ - Deploy agent to phone
        number

        - ALL /whatsapp-accounts/{id}/proxy/{path} - Proxy requests to the
        WhatsApp Business API (Graph API)
      operationId: api_v1_whatsapp_accounts_retrieve
      parameters:
        - in: path
          name: id
          schema:
            type: string
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WhatsAppAccount'
          description: ''
      security:
        - ApiKeyAuth: []
components:
  schemas:
    WhatsAppAccount:
      type: object
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        name:
          type: string
          nullable: true
          maxLength: 255
        waId:
          type: string
        phoneNumbers:
          type: string
          readOnly: true
        templatesUrl:
          type: string
          readOnly: true
      required:
        - id
        - phoneNumbers
        - templatesUrl
        - waId
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key authentication. Pass your API key in the X-API-Key header.

````