Your JWT is short-lived and scoped to an interactive session — fine for logging in and minting a token, not for anything running unattended. A Personal Access Token (PAT) is what your scripts, notebooks, CI jobs, and integrations use going forward. Long-lived, scope-limited, and issued against the workspace active on your JWT session at creation time.
Create the token
The token field is returned only once. Save it now — if you lose it, revoke the token and create a new one.
Export it. This is what you’ll send for every remaining step:
Choosing scopes
The scopes above cover everything this walkthrough exercises. In your own integrations, request only what you actually need — smaller scope means smaller blast radius if a token leaks. See API Tokens for the full user scope reference.
A PAT is single-tenant — it stays scoped to the workspace active on the JWT session at creation. To create a token for a different workspace, switch workspaces on the JWT first (previous step), then create a new token.
Next: Discover models →