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

# Get Cube State

> Retrieves the complete current state of the game board (the cube) for a given game ID and team, providing visibility into the game's ongoing status.



## OpenAPI

````yaml api-reference/cubic-api.json post /api/v1/cubic/cubeState
openapi: 3.0.0
info:
  title: Cubic Game API
  description: >-
    API documentation for the Cubic game, providing endpoints for game
    management, ship actions, and retrieving game state information.
  version: '1.0'
  contact:
    name: Cubic Game Support
servers:
  - url: http://50.187.81.221:4000
    description: Rendezvous Cubic Server.
  - url: https://cubic.ngrok.app
    description: Ender's Cubic Server.
security: []
tags:
  - name: Cubic
    description: Operations related to the Cubic game mechanics.
paths:
  /api/v1/cubic/cubeState:
    post:
      tags:
        - Cubic
      summary: Get Cube State
      description: >-
        Retrieves the complete current state of the game board (the cube) for a
        given game ID and team, providing visibility into the game's ongoing
        status.
      operationId: CubicController_getCubeState
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetCubeStateDTO'
            examples:
              getCubeStateExample:
                summary: Example of getting the cube state
                value:
                  gameID: uniqueGame123
                  teamName: RedTeam
        description: >-
          Request to retrieve the current state of the game cube for a specific
          game and team.
      responses:
        '201':
          description: Current cube state retrieved successfully.
components:
  schemas:
    GetCubeStateDTO:
      type: object
      properties:
        gameID:
          type: string
          description: The unique identifier of the game.
        teamName:
          type: string
          description: The name of the team requesting the cube state.
      required:
        - gameID
        - teamName
      description: Data transfer object for requesting the current state of the game cube.

````