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

# API Status

> Check the status of the API



## OpenAPI

````yaml GET /status
openapi: 3.0.1
info:
  title: Status API
  description: Common status endpoint for checking API health
  version: 1.0.0
servers:
  - url: https://api.sandbox.external.bnznow.com
    description: Sandbox server
  - url: https://api.external.bnznow.com
    description: Production server
security: []
paths:
  /status:
    get:
      tags:
        - Status
      summary: Check API Status
      description: Check the health status of the API
      operationId: getStatus
      responses:
        '200':
          description: API is healthy
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
components:
  schemas:
    HealthResponse:
      type: object
      properties:
        status:
          type: string
          description: Status of the API
          enum:
            - ok
        timestamp:
          type: string
          format: date-time
          description: Current timestamp in ISO 8601 format

````