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

# Statut du service

> Endpoint public (sans clé) — indique que l'API répond.



## OpenAPI

````yaml /api-reference/openapi.json get /api/status
openapi: 3.1.0
info:
  title: apinn — Pinnacle Data API
  version: 1.0.0
  description: Cotes Pinnacle en temps réel, format iso Pinnacle Data API.
servers:
  - url: https://api.apinn.io
security:
  - ApiKeyAuth: []
paths:
  /api/status:
    get:
      summary: Statut du service
      description: Endpoint public (sans clé) — indique que l'API répond.
      responses:
        '200':
          description: OK
          content:
            application/json:
              example:
                status: ok
                timestamp: '2026-07-16T14:00:00.000'
      security: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````