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

> Check the health of the API.

# Healthcheck

## Overview

This endpoint returns the current API health status.

## Example request

```bash theme={null}
curl --get "https://api.extruct.ai/v1/healthcheck"
```

## Key parameters

* None.

## Success signal

A successful response returns HTTP `200`.

## Common errors

### Non-200 response

Retry after a short delay and check network connectivity if failures persist.

## Related endpoints

* [Get User (`GET /v1/user`)](/api-reference/user)


## OpenAPI

````yaml get /v1/healthcheck
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers: []
security: []
paths:
  /v1/healthcheck:
    get:
      summary: Healthcheck
      operationId: healthcheck_v1_healthcheck_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````