Status

Get the current status of the deployed client

Get Status

GET 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.

{
    "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"
    }
}

Last updated