> ## 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.

# Get group

> Developer API operation for GET /dev/v1/groups/{uniqid}.



## OpenAPI

````yaml /openapi.json get /dev/v1/groups/{uniqid}
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/{uniqid}:
    get:
      tags:
        - Groups
      summary: Get group
      description: Developer API operation for GET /dev/v1/groups/{uniqid}.
      operationId: getDevV1GroupsByUniqid
      parameters:
        - name: uniqid
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    additionalProperties: true
                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
      deprecated: false
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: Use your Shoppex API key in the Authorization header.

````