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

# API Status

> Health check with data freshness — events, markets, and platform ingestion status



## OpenAPI

````yaml GET /api/v1/status
openapi: 3.0.3
info:
  title: EventGraph API
  description: >-
    Unified prediction market data across Polymarket, Kalshi, Limitless, and
    OpinionTrade.
  version: 1.0.0
  contact:
    name: EventGraph
    url: https://eventgraph.ai
    email: info@eventgraph.ai
servers:
  - url: https://app.eventgraph.ai
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /api/v1/status:
    get:
      tags:
        - Status
      summary: API Status
      description: >-
        Health check with data freshness — total events, markets, and
        per-platform ingestion status.
      operationId: getStatus
      responses:
        '200':
          description: API status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StatusResponse'
components:
  schemas:
    StatusResponse:
      type: object
      properties:
        data:
          type: object
          properties:
            status:
              type: string
              enum:
                - operational
                - degraded
            version:
              type: string
            events:
              type: integer
              description: Total active events
            markets:
              type: integer
              description: Total active markets
            platforms:
              type: object
              description: Per-platform status and last update time
            supported_platforms:
              type: array
              items:
                type: string
        timestamp:
          type: string
          format: date-time
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: Your EventGraph API key (eg_live_...)

````