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

# Gateway status

> Public liveness and status of the gateway.



## OpenAPI

````yaml GET /v1/health/providers
openapi: 3.1.0
info:
  title: Infyrence API
  version: 1.0.0
  summary: Unified, OpenAI-compatible AI gateway for 200+ models.
  description: >
    Infyrence is a unified, OpenAI-compatible inference gateway. Call 200+
    models

    from every major provider through a single endpoint and one API key, with

    automatic failover and edge-fast routing.


    ## Authentication

    Authenticate every request with your Infyrence API key as a Bearer token:


    ```

    Authorization: Bearer sk-...

    ```


    Create and manage keys in your
    [dashboard](https://www.infyrence.com/dashboard/api-keys).


    ## OpenAI compatibility

    The API mirrors the OpenAI Chat Completions API. To migrate an existing

    integration, point the base URL at `https://api.infyrence.com/v1` and set
    the

    `model` to any model from `GET /v1/models`, no other changes required.


    ## Pricing

    Billing is usage-based, per model: you pay for input and output tokens at
    each

    model's published per-million-token rate. See

    [infyrence.com/pricing](https://www.infyrence.com/pricing).
  contact:
    name: Infyrence Support
    url: https://www.infyrence.com/contact
    email: support@infyrence.com
  license:
    name: Proprietary
    url: https://www.infyrence.com/terms
  termsOfService: https://www.infyrence.com/terms
servers:
  - url: https://api.infyrence.com
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Chat
    description: Create model responses from a list of messages.
  - name: Models
    description: List the models available through the gateway.
  - name: Health
    description: Public liveness and status endpoints.
paths:
  /v1/health/providers:
    get:
      tags:
        - Health
      summary: Gateway status
      description: |
        Public liveness for status pages. Returns `ok` when the gateway is
        serving traffic, or `degraded` otherwise. Requires no authentication.
      operationId: getStatus
      responses:
        '200':
          description: The current gateway status.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GatewayStatus'
      security: []
components:
  schemas:
    GatewayStatus:
      type: object
      required:
        - status
      properties:
        status:
          type: string
          enum:
            - ok
            - degraded
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: sk-...
      description: 'Your Infyrence API key, sent as `Authorization: Bearer sk-...`.'

````