Authentication & API keys
The Partner API authenticates every request with an API key you create yourself in the Studio Console, under Settings → API Keys — there’s no registration form and no waiting for approval. You sign in with your JARAI account (Microsoft, Google, or email — the same account you use for the Console) and mint a scoped key in seconds. The key identifies your integration and scopes it to your account’s data.
Prefer to read? Open the step-by-step transcript
- Sign in to the Studio Console and open Settings → API Keys.
- Create an API key (name it for the integration that will use it) and choose its scopes.
- Copy it once — store it in your own secret manager; JARAI shows it only at creation.
- Send it on every request in the authentication header (exact header name + format are in the Developer Portal reference).
- Rotate it periodically; revoke immediately if it leaks.
Before you start
Getting a key is identity-first and self-serve — there’s no separate API registration:
- You sign in to the Studio Console with your JARAI account — Microsoft, Google, or email. If your organisation already uses JARAI you’re ready; there’s nothing extra to register, and your keys live alongside the rest of your account settings.
- You need the Customer administrator role. Creating and revoking keys is available to customer administrators on your account. If you can sign in but can’t create a key, ask whoever administers your JARAI account to grant the role, or to create the key for you.
- No approval queue. Keys are issued instantly, the moment you create them. The keys you make yourself are sandbox test keys — see Test keys & the sandbox for going live.
Creating a key
-
Open the Studio Console, sign in, and go to Settings → API Keys. Sign in with your JARAI account — Microsoft, Google, or email.
-
Create a key, give it a descriptive name (e.g.
prod-ingest-service) so you can tell keys apart later, and choose its scopes — least-privilege by default; add write scopes only if your integration needs them. -
Copy the secret once. It’s shown only at creation time. Store it in your own secret manager — never in source control, client-side code, or a shared doc.
Using a key
Send the key on every request in the authentication header. The exact header name and value format are documented in the Developer Portal reference (it’s the authoritative source — don’t hard-code an assumption from a blog post).
Rotating & revoking
- Rotate keys on a schedule. Create the new key, deploy it, then revoke the old one — zero-downtime rotation.
- Revoke immediately if a key is exposed (committed, logged, leaked). Revocation takes effect at once; in-flight requests with the old key start failing auth.
- Use separate keys per integration/environment so you can revoke one without breaking the others, and so usage is attributable.
What a key can do
A key acts within your account’s scope and draws on its token allowance and billing. It cannot cross into other accounts’ data — the platform enforces account isolation server-side regardless of what a key requests.
Test keys & the sandbox
Keys you create yourself in the Studio Console are test keys (prefixed
jarai_test_). They’re scoped to your own sandbox accounts — the place to build
and validate your integration without touching live distribution or spending beyond
your account’s allowance.
When you’re ready to go live, contact JARAI for a production key (jarai_live_).
A production key carries the scopes you select but operates against your live accounts.
Rate limits & tiers
Every key shares a per-partner request budget set by your tier. The limits are
returned on each response in the X-RateLimit-Limit, X-RateLimit-Remaining, and
X-RateLimit-Reset headers; exceeding them returns 429 Too Many Requests.
| Tier | Requests/min | Requests/day | Daily productions per account |
|---|---|---|---|
| Free | 10 | 100 | 3 |
| Standard | 60 | 2,000 | 20 |
| Enterprise | 300 | Unlimited | Unlimited |
Self-provisioned keys start on the Free tier. The budget is shared across all of
a customer’s keys, so creating more keys doesn’t raise the limit. Read the live
X-RateLimit-* headers and back off as X-RateLimit-Remaining approaches zero — the
Developer Portal reference carries the
authoritative limits.
© 2026 JARAI STUDIO Ltd. All rights reserved.