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

# List SKUs in group

> Lists all active SKUs in a specified group with their pricing information. Groups are logical collections of related SKUs.



## OpenAPI

````yaml api-reference/billing.yaml post /skus/list
openapi: 3.0.3
info:
  title: billing
  description: >-
    The Billing Service manages billing-related operations across the platform.
    It handles all financial transactions, balance management, and SKU-based
    pricing across the platform.
  version: 1.0.0
servers:
  - url: https://billing.platform.arb.inc
security: []
tags:
  - name: /
  - name: _internal
  - name: balance
  - name: charge
  - name: checkout
  - name: pricing
  - name: skus
  - name: transactions
paths:
  /skus/list:
    post:
      tags:
        - skus
      summary: List SKUs in group
      description: >-
        Lists all active SKUs in a specified group with their pricing
        information. Groups are logical collections of related SKUs.
      operationId: listSKUs
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - groupCode
              properties:
                groupCode:
                  type: string
                  description: SKU group code to list (1-100 characters)
                  example: STANDARD_SERVICES
                includeInactive:
                  type: boolean
                  description: Whether to include inactive SKUs
                  example: false
      responses:
        '200':
          description: List of SKUs in the group
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                      example: 5e8f9a7b-3c2d-4e6f-9a8c-7d6e5f4a3b2c
                    code:
                      type: string
                      example: DOCUMENT_FILING
                    name:
                      type: string
                      example: Document Filing
                    description:
                      type: string
                      example: File a document in a case
                    isActive:
                      type: boolean
                      example: true
                    priceCredits:
                      type: number
                      example: 10
                    priceDollars:
                      type: number
                      example: 1
                    currencyCode:
                      type: string
                      example: USD
        '404':
          description: SKU group not found
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````