# Get Fingerprint Status

This page illustrates how to check the status of the Fingerprint service using the `fingerprint` endpoint.

{% hint style="info" %}
Additional fields may be included in some responses you receive; however, these attributes are for internal purposes and are therefore undocumented.
{% endhint %}

## Get the status of the fingerprint service

<mark style="color:green;">`GET`</mark> `/fingerprint/status`

Get the status of the Fingerprint service.

#### Response parameters

| Attribute | Description                                             |
| --------- | ------------------------------------------------------- |
| healthy   | `boolean` If `true`, the fingerprint status is healthy. |

### Request example

The following request gets the status of the Fingerprint service.

```shell
curl \
    --request GET \
    --header "Content-Type: application/json" \
    --header "Authorization: Bearer dea464c07bd07300095caa8" \
    https://your-immuta-url.com/fingerprint/status
```

### Response example

```json
{
  "healthy": true
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://documentation.immuta.com/2024.2/developer-guides/api-intro/immuta-v1-api/configure-your-instance-of-immuta/fingerprint.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
