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

# Ping Health

> Simple health check endpoint that returns 200 OK.



## OpenAPI

````yaml https://app.stainless.com/api/spec/documented/morphik/openapi.documented.yml get /ping
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers: []
security: []
paths:
  /ping:
    get:
      tags:
        - health
      summary: Ping Health
      description: Simple health check endpoint that returns 200 OK.
      operationId: ping_health_ping_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthCheckResponse'
      x-codeSamples:
        - lang: JavaScript
          source: |-
            import Morphik from 'morphik';

            const client = new Morphik({
              apiKey: process.env['MORPHIK_API_KEY'], // This is the default and can be omitted
            });

            const response = await client.ping.check();

            console.log(response.message);
        - lang: cURL
          source: |-
            curl https://api.morphik.ai/ping \
                -H "Authorization: Bearer $MORPHIK_API_KEY"
components:
  schemas:
    HealthCheckResponse:
      properties:
        status:
          type: string
          title: Status
        message:
          type: string
          title: Message
      type: object
      required:
        - status
        - message
      title: HealthCheckResponse
      description: Response for health check endpoint

````