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

# Health Check

> Returns the health status of the API. This endpoint does not require authentication.



## OpenAPI

````yaml https://api.snapopa.com/specs get /health
openapi: 3.1.0
info:
  title: Snapopa API
  version: 1.0.0
  description: >-
    High-performance API for website screenshots, screen recording, PDFs, and
    metadata extraction. Built for developers, marketers, and enterprises who
    need reliable, scalable capture solutions.
  termsOfService: https://snapopa.com/terms
  contact:
    name: Snapopa Support
    url: https://snapopa.com
    email: hello@snapopa.com
  license:
    name: Proprietary
    url: https://snapopa.com/terms
servers:
  - url: https://api.snapopa.com
    description: Production API
security:
  - bearerAuth: []
tags:
  - name: Capture
    description: >-
      Create and manage website screenshots, PDFs, and screen recordings.
      Supports caching, persistence, and custom viewport configurations.
    externalDocs:
      description: Capture API Guide
      url: https://snapopa.com/docs/api/capture
  - name: System
    description: Health checks and system status monitoring endpoints
    externalDocs:
      description: System API Guide
      url: https://snapopa.com/docs/api/system
externalDocs:
  description: Full API Documentation
  url: https://snapopa.com/docs
paths:
  /health:
    get:
      tags:
        - System
      summary: Health Check
      description: >-
        Returns the health status of the API. This endpoint does not require
        authentication.
      responses:
        '200':
          description: API is healthy
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  error:
                    nullable: true
                  data:
                    type: object
                    properties:
                      status:
                        type: string
                    required:
                      - status
                required:
                  - success
                  - error
                  - data
      security: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key authentication. Get your API key at
        https://snapopa.com/dashboard
      bearerFormat: API Key

````