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

# Group picture

> Returns the URL of a group's picture (icon).



## OpenAPI

````yaml /en/api-reference/openapi.json get /groups/picture
openapi: 3.1.0
info:
  title: Zapfy API
  description: >-
    Multi-tenant WhatsApp API. Send messages and manage webhooks through a
    single surface.
  version: 1.0.0
servers:
  - url: https://api.zapfy.io/v1
security:
  - accountToken: []
paths:
  /groups/picture:
    get:
      tags:
        - Groups
      summary: Group picture
      description: Returns the URL of a group's picture (icon).
      parameters:
        - name: id
          in: query
          required: true
          schema:
            $ref: '#/components/schemas/GroupId'
          description: the group id (returned by GET /groups).
      responses:
        '200':
          $ref: '#/components/responses/AvatarResult'
        '400':
          $ref: '#/components/responses/Error'
        '401':
          $ref: '#/components/responses/Error'
        '403':
          $ref: '#/components/responses/Error'
        '502':
          $ref: '#/components/responses/Error'
      security:
        - instanceToken: []
components:
  schemas:
    GroupId:
      type: string
      description: the group id (returned by GET /groups).
      example: '120363012345678901'
    AvatarResult:
      type: object
      properties:
        url:
          type: string
          description: Profile picture URL. Can be downloaded with a simple GET.
          example: https://pps.whatsapp.net/v/t61.jpg
  responses:
    AvatarResult:
      description: Profile picture.
      content:
        application/json:
          schema:
            type: object
            properties:
              data:
                $ref: '#/components/schemas/AvatarResult'
    Error:
      description: Error.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                example: Instance not found
  securitySchemes:
    accountToken:
      type: http
      scheme: bearer
      description: Account token (`zpfy_acct_...`) — manages instances and webhooks.
    instanceToken:
      type: http
      scheme: bearer
      description: Instance token (`zpfy_inst_...`) — sends messages.

````