Authentication

Endpoint to authenticate your account. The API will return a token to authorize subsequent API requests.

Authenticate your account

POST https://api.waldo.ai/authenticate

Request Body

NameTypeDescription

apiKey*

String

clientSecret*

String

Response

{
  "token": "eyJh...."
}
curl --location 'https://api.waldo.ai/authenticate' \
--data '{"apiKey": "YOUR_API_KEY","clientSecret": "CLIENT_SECRET"}'

Authorization

Use the token from the authentication response to authorize subsequent API requests. The token should be added in the Authorization header:

Authorization: Bearer <token>

Last updated