> ## 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.

# Game Details

> Returns details for a game.



## OpenAPI

````yaml api-reference/cubic-api.json post /api/v1/cubic/getGameDetails
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/getGameDetails:
    post:
      tags:
        - Cubic
      summary: Game Details
      description: Returns details for a game.
      operationId: CubicController_getGameDetails
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BaseCommandDTO'
            examples:
              gameDetailsExample:
                summary: Example of getting details for a game
                value:
                  gameID: uniqueGame123
        description: Details for a game.
      responses:
        '201':
          description: Game Details.
components:
  schemas:
    BaseCommandDTO:
      type: object
      properties:
        gameID:
          type: string
          description: The unique identifier of the game to get details for.
      required:
        - gameID
      description: Data transfer object for identifying a game.

````