API access

Authentication

Authenticate Developer API requests with a Clerk bearer token.

Management API routes require an authenticated Clerk session. Send the session token in the Authorization header for every protected request.

Authentication: management API endpoints require a Clerk bearer token.https://api.vyso.io/v1/...

Endpoints

GETAuthorization: Bearer <clerk-session-token>

Authentication header

  • Required for management API requests.
  • The API returns 401 Unauthorized when the token is missing or invalid.
curl -i https://api.vyso.io/v1/assets -H "Authorization: Bearer $CLERK_SESSION_TOKEN"

Notes

  • Clerk handles sign-in and token issuance. This public API does not define a separate API-key flow.