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

# Get Gateway Status

> Get Gateway container status.



## OpenAPI

````yaml /api-reference/openapi.json get /gateway/status
openapi: 3.1.0
info:
  title: Hummingbot API
  description: API for managing Hummingbot trading instances
  version: 1.0.1
servers:
  - url: http://localhost:8000
    description: Local development server
security: []
paths:
  /gateway/status:
    get:
      tags:
        - Gateway
      summary: Get Gateway Status
      description: Get Gateway container status.
      operationId: get_gateway_status_gateway_status_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GatewayStatus'
      security:
        - HTTPBasic: []
components:
  schemas:
    GatewayStatus:
      properties:
        running:
          type: boolean
          title: Running
          description: Whether Gateway container is running
        container_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Container Id
          description: Container ID if running
        image:
          anyOf:
            - type: string
            - type: 'null'
          title: Image
          description: Image used for the container
        created_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Created At
          description: Container creation timestamp
        port:
          anyOf:
            - type: integer
            - type: 'null'
          title: Port
          description: Port Gateway is running on
      type: object
      required:
        - running
      title: GatewayStatus
      description: Status information for Gateway instance
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````