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

# Create the organisation's playground

> Creates the organisation's playground: a real, writable vcluster on Ankra's shared playground host. Browser session authentication. Available to every organisation; one playground per organisation, bounded globally by the host's concurrency cap.



## OpenAPI

````yaml https://platform.ankra.app/openapi.json post /org/clusters/playground
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://platform.ankra.app
security: []
paths:
  /org/clusters/playground:
    post:
      tags:
        - clusters
      summary: Create the organisation's playground
      description: >-
        Creates the organisation's playground: a real, writable vcluster on
        Ankra's shared playground host. Browser session authentication.
        Available to every organisation; one playground per organisation,
        bounded globally by the host's concurrency cap.
      operationId: create_playground_browser
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PlaygroundCreatedResponse'
          description: Successful response
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContractDetailError'
          description: Unauthenticated
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContractDetailError'
          description: Permission or CSRF check failed
        '409':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContractDetailError'
          description: The organisation already holds a playground
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContractDetailError'
          description: Internal server error
        '503':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContractDetailError'
          description: >-
            The playground host is at capacity, or no playground host is
            registered in this environment
components:
  schemas:
    PlaygroundCreatedResponse:
      properties:
        cluster_id:
          format: uuid
          type: string
        success:
          type: boolean
      required:
        - cluster_id
        - success
      title: PlaygroundCreatedResponse
      type: object
    ContractDetailError:
      example:
        detail: Cluster not found
      properties:
        detail:
          oneOf:
            - type: string
            - additionalProperties: true
              properties: {}
              type: object
      required:
        - detail
      type: object

````