Skip to main content

Authentication

Access is provisioned for you — there is no self-service signup. Ask your SANCE account manager for:

  • a login / password pair for your workspace, and
  • a JWT access token for API requests.

Your account is scoped to a company (your tenant) and a user within it; the token encodes that identity.

Using the token

Every API request authenticates with a bearer token — send your JWT in the Authorization header:

Authorization: Bearer <your-token>
curl -s https://api.sance.ai/v1/products/ \
-H "Authorization: Bearer $TOKEN"

Treat the token like a password — keep it secret and out of source control. If it expires or leaks, ask your account manager to issue a new one.

Next