Getting Started

Use this guide to setup your first connection to the Hum API.

Step 1: Obtain a Bearer Token

To begin using our API, you’ll need to obtain a Bearer Token that authenticates your application. Please reach out to: [email protected] if you have not yet received a Bearer Token.

Step 2: Verify Your Bearer Token

To ensure that your Bearer Token is valid, we recommend sending a GET request to the Health Check endpoint.

API Request

curl --request GET \
     --url https://api.letshum.com/ping \
     --header 'accept: application/json' \
     --header 'authorization: Bearer <YOUR-TOKEN-HERE>'

API Response

{
  "message": "🎤 We're humming along!",
  "timestamp": "1985-11-12T22:04:00.742Z"
}