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

# List groups

> Developer API operation for GET /dev/v1/groups.



## OpenAPI

````yaml /openapi.json get /dev/v1/groups
openapi: 3.0.3
info:
  title: Shoppex Developer API
  description: Mintlify-compatible Developer API reference for Shoppex.
  version: 1.0.0
  contact:
    name: Shoppex Support
    email: support@shoppex.io
    url: https://shoppex.io
servers:
  - url: https://api.shoppex.io
security:
  - bearerAuth: []
paths:
  /dev/v1/groups:
    get:
      tags:
        - Groups
      summary: List groups
      description: Developer API operation for GET /dev/v1/groups.
      operationId: getDevV1Groups
      parameters:
        - name: cursor
          in: query
          required: false
          schema:
            type: string
        - name: limit
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      additionalProperties: true
                  pagination:
                    type: object
                    properties:
                      next_cursor:
                        type: string
                        nullable: true
                      has_more:
                        type: boolean
                example:
                  data:
                    - id: grp_db_1
                      uniqid: grp_1
                      shop_id: shop_1
                      title: VIP Access
                      description: Priority products for members
                      is_unlisted: false
                      sort_order: 1
                      created_at: 1711962000
                      updated_at: 1711965600
                      products_bound:
                        - uniqid: prod_starter
                          title: Starter Pack
                          type: DIGITAL
                          price: 29.99
                          price_display: 29.99
                          currency: USD
                          stock: 999
                          custom_fields:
                            badge: vip
                  pagination:
                    next_cursor: null
                    has_more: false
      deprecated: false
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: Use your Shoppex API key in the Authorization header.

````