> ## Documentation Index
> Fetch the complete documentation index at: https://resq-dependabot-github-actions-github-actions-478e18be3d.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# GET /health

> Returns the current health status of the service and its integrations.



## OpenAPI

````yaml /specs/infrastructure.json get /health
openapi: 3.1.0
info:
  title: resq-api
  description: ''
  license:
    name: Apache-2.0
    identifier: Apache-2.0
  version: 0.1.0
servers: []
security: []
tags:
  - name: resq-backend
    description: ResQ Infrastructure API
  - name: auth
    description: Authentication endpoints
  - name: incidents
    description: Incident management endpoints
  - name: evidence
    description: Evidence management endpoints
  - name: blockchain
    description: Blockchain query endpoints
  - name: solana
    description: Solana program endpoints (PoD + airspace)
paths:
  /health:
    get:
      tags:
        - resq-backend
      summary: GET /health
      description: Returns the current health status of the service and its integrations.
      operationId: health_check
      responses:
        '200':
          description: Service is healthy
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
components:
  schemas:
    HealthResponse:
      type: object
      description: API health check response.
      required:
        - status
        - pinata
        - gemini
        - spoon_os
      properties:
        gemini:
          type: boolean
          description: connectivity status with Gemini.
        pinata:
          type: boolean
          description: connectivity status with Pinata.
        spoon_os:
          type: string
          description: Version of Spoon OS.
        status:
          type: string
          description: Overall API status.

````