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

# Get All Groups

> Scrape, retrieve, and map complete structured lists including names, configuration metadata profiles, and unique JIDs of all channels your instance profile resides in.



## OpenAPI

````yaml GET /groups
openapi: 3.0.3
info:
  title: Wachat Enterprise API
  description: >
    Welcome to the official Wachat API reference. Wachat provides
    developer-friendly, ultra-reliable infrastructure to scale your WhatsApp
    communications programmatically.


    Easily deploy automated messaging pipelines, orchestrate interactive
    customer engagement patterns, verify phone numbers instantly, and control
    containerized WhatsApp instances via a secure, production-grade REST
    architecture.
  version: 1.0.0
servers:
  - url: https://app.wachat.net/api/v1
    description: Live Production Gateway
security:
  - bearerAuth: []
paths:
  /groups:
    get:
      tags:
        - Mass Channel Orchestration
      summary: Retrieve All Connected Groups
      description: >-
        Scrape, retrieve, and map complete structured lists including names,
        configuration metadata profiles, and unique JIDs of all channels your
        instance profile resides in.
      parameters:
        - in: query
          name: instanceName
          required: true
          schema:
            type: string
          description: >-
            The designated tracking name representing your active connection
            runtime session.
      responses:
        '200':
          description: >-
            Collection array containing structural channel groups metadata
            pulled.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Authenticate your integration payloads by injecting your premium secure
        Wachat Account API Private Secret Key inside standard Authorization
        Bearer header vectors.

````