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

# Get Collection Names

> Get simple list of all collection names.

Returns a simple list of collection names without pagination,
suitable for populating dropdowns and permission matrices.
Only superadmins can access this endpoint.

Args:
    current_user: Authenticated superadmin user.
    session: Database session.

Returns:
    List of collection names.



## OpenAPI

````yaml get /api/v1/collections/names
openapi: 3.1.0
info:
  title: SnackBase
  description: Open-source Backend-as-a-Service (BaaS)
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/collections/names:
    get:
      tags:
        - collections
      summary: Get Collection Names
      description: |-
        Get simple list of all collection names.

        Returns a simple list of collection names without pagination,
        suitable for populating dropdowns and permission matrices.
        Only superadmins can access this endpoint.

        Args:
            current_user: Authenticated superadmin user.
            session: Database session.

        Returns:
            List of collection names.
      operationId: get_collection_names_api_v1_collections_names_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '403':
          description: Superadmin access required

````