> For the complete documentation index, see [llms.txt](https://docs.trust.enterprises/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.trust.enterprises/rest-api/status.md).

# Status

## Get Status

<mark style="color:blue;">`GET`</mark> `https://hedera-serverless-consensus.vercel.app/api/status`

This endpoint allows you to get the current status of the client, this information can be hidden by setting **HIDE\_STATUS** in your environment variables.\
\
**Note:** The **authenticationKey** could return as false if it is shorter then 10 characters.

{% tabs %}
{% tab title="200 The current status of the deployed client." %}

```
{
    "message": "Your environment status for your client",
    "environment_status": {
        "hederaAccountId": true,
        "hederaPrivateKey": true,
        "authenticationKey": true
    },
    "meta": {
        "hint": "Hide this status endpoint by setting \"HIDE_STATUS=TRUE\" in your environment"
    }
}
```

{% endtab %}
{% endtabs %}
