> ## Documentation Index
> Fetch the complete documentation index at: https://www.1password.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Ping the server for liveness



## OpenAPI

````yaml /openapi/connect_server_api.yaml get /heartbeat
openapi: 3.0.2
info:
  title: 1Password Connect
  description: REST API interface for 1Password Connect.
  version: 1.8.1
  contact:
    name: 1Password Integrations
    email: support@1password.com
    url: https://support.1password.com/
servers:
  - url: http://localhost:8080/v1
security: []
tags:
  - name: Items
    description: Access and manage items inside 1Password Vaults
  - name: Vaults
    description: Access 1Password Vaults
  - name: Activity
    description: Access API Request Activity
paths:
  /heartbeat:
    get:
      tags:
        - Health
      summary: Ping the server for liveness
      operationId: GetHeartbeat
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: string
                example: .
      servers:
        - url: http://localhost:8080

````