curl --request GET \
--url https://app.all-hands.dev/health \
--header 'Authorization: Bearer <token>'
"OK"
Check if the API is running
curl --request GET \
--url https://app.all-hands.dev/health \
--header 'Authorization: Bearer <token>'
"OK"
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
API is running
The response is of type string
.
"OK"
Was this page helpful?