GET /api/v1/health require authentication via a Bearer token.
Bearer token
Include your token in theAuthorization header of every request:
GET /api/v1/health is unauthenticated and can be called without an Authorization header.How to authenticate requests to the Quark API using Supabase JWTs.
GET /api/v1/health require authentication via a Bearer token.
Authorization header of every request:
Authorization: Bearer <token>
GET /api/v1/health is unauthenticated and can be called without an Authorization header.curl -X POST http://localhost:3000/api/v1/session/ \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{ "label": "My first session" }'
{ "error": "Unauthorized Access" }
{ "error": "Internal Server Error", "code": "<error_code>" }
Learn more about Mintlify
Enter your email to receive updates about new features and product releases.