Skip to main content
GET
/
ping
API Health Check
curl --request GET \
  --url https://api-sandbox.letshum.com/ping \
  --header 'Authorization: Bearer <token>'
{
  "message": "🎤 We're humming along!",
  "request_status": "ok",
  "data": {},
  "timestamp": "2024-09-20T23:13:31.179Z"
}

Authorizations

Authorization
string
header
required

Bearer token authentication using JWT tokens. Include the token in the Authorization header as: Authorization: Bearer <token>

Obtain tokens through your Hum API account dashboard or contact support@letshum.com for access.

Response

API is available, and token is valid

message
string
required

A message confirming the API is available.

Example:

"🎤 We're humming along!"

request_status
enum<string>
required

A status code summarizing the outcome of this response.

  • ok: Request was successful
  • warning: Request was processed but with some issues
  • error: Request failed
Available options:
ok,
warning,
error
Example:

"ok"

data
object
required

Empty object for this response

timestamp
string<date-time>
required

A timestamp in ISO 8601 format.

Example:

"2024-09-20T23:13:31.179Z"