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

# Get Categories

> Return the static category taxonomy — useful for dynamic dropdowns in the frontend.



## OpenAPI

````yaml /openapi/inventory.yaml get /api/v1/inventory/categories
openapi: 3.1.0
info:
  title: Cape Digi - Inventory Service
  description: >-
    Ad inventory catalog, rate cards, booking orders, campaign tracking, ad
    asset management, and commercial transmission scheduling.
  version: 1.0.0
servers:
  - url: https://api.capedigital.co.ke/inventory
    description: Production
  - url: http://localhost:8000
    description: Local
security: []
paths:
  /api/v1/inventory/categories:
    get:
      tags:
        - Inventory
      summary: Get Categories
      description: >-
        Return the static category taxonomy — useful for dynamic dropdowns in
        the frontend.
      operationId: get_categories_api_v1_inventory_categories_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````