Aller au contenu principal

xAI Grok OAuth (SuperGrok / X Premium+)

Indagis Agent supports xAI Grok through a browser-based OAuth device-code login flow against accounts.x.ai, using either a SuperGrok subscription (grok.com) or an X Premium+ subscription (linked X account). No XAI_API_KEY is required — log in once and Indagis automatically refreshes your session in the background.

When you sign in with an X account that has Premium+, xAI automatically links the subscription status to your xAI session, so the OAuth flow works the same as it does for direct SuperGrok subscribers.

The transport reuses the codex_responses adapter (xAI exposes a Responses-style endpoint), so reasoning, tool-calling, streaming, and prompt caching work without any adapter changes.

The same OAuth bearer token is also reused by every direct-to-xAI surface in Indagis — TTS, image generation, video generation, and transcription — so a single login covers all four.

Overview

ItemValue
Provider IDxai-oauth
Display namexAI Grok OAuth (SuperGrok / X Premium+)
Auth typeBrowser OAuth 2.0 device code
TransportxAI Responses API (codex_responses)
Default modelgrok-4.6
Endpointhttps://api.x.ai/v1
Auth serverhttps://accounts.x.ai
Requires env varNo (XAI_API_KEY is not used for this provider)
SubscriptionSuperGrok or X Premium+ — see note below

Prerequisites

  • Python 3.9+
  • Indagis Agent installed
  • An active SuperGrok subscription on your xAI account, or an X Premium+ subscription on the X account you sign in with (xAI links the subscription automatically)
  • A browser available anywhere you can open the printed verification URL

:::warning xAI may restrict OAuth API access by tier xAI's backend enforces its own allowlist on the OAuth API surface and has been seen to reject standard SuperGrok subscribers with HTTP 403 (see issue #26847) even though the in-app subscription is active. If OAuth login succeeds in the browser but inference returns 403, set XAI_API_KEY and switch to the API-key path (provider: xai) — that surface is not subject to the same gating today. :::

Quick Start

# Launch the provider and model picker
indagis model
# → Select "xAI Grok OAuth (SuperGrok / X Premium+)" from the provider list
# → Indagis opens or prints an accounts.x.ai verification URL
# → Enter the displayed code if prompted, then approve access in the browser
# → Pick a model (grok-4.6 is at the top)
# → Start chatting

indagis

After the first login, credentials are stored under ~/.indagis/auth.json and refreshed automatically before they expire.

Logging In Manually

You can trigger a login without going through the model picker:

indagis auth add xai-oauth

Remote / headless sessions

On servers, containers, browser-only consoles (Cloud Shell, Codespaces, EC2 Instance Connect), or SSH sessions where Indagis cannot open a browser locally, Indagis prints the xAI verification URL and user code. Open the URL in any browser on your laptop or in the cloud console, enter the code if prompted, and Indagis will keep polling until xAI approves the login. No SSH tunnel or local callback listener is required.

indagis auth add xai-oauth --no-browser
# Open the printed verification URL in your browser.

The same device-code flow applies when you sign in from the web dashboard or the desktop app: Indagis shows the verification URL and user code, then polls in the background until you approve access.

How the Login Works

  1. Indagis requests a device code from auth.x.ai.
  2. You open the verification URL, sign in, enter the displayed code if prompted, and approve access.
  3. Indagis polls xAI until approval, then saves tokens to ~/.indagis/auth.json.
  4. From then on, Indagis refreshes the access token in the background — you stay signed in until you indagis auth logout xai-oauth or revoke access from your xAI account settings.

Checking Login Status

indagis doctor

The ◆ Auth Providers section will show the current state of every provider, including xai-oauth.

Switching Models

indagis model
# → Select "xAI Grok OAuth (SuperGrok / X Premium+)"
# → Pick from the model list (grok-4.6 is pinned to the top)

Or set the model directly:

indagis config set model.default grok-4.6
indagis config set model.provider xai-oauth

Configuration Reference

After login, ~/.indagis/config.yaml will contain:

model:
default: grok-4.6
provider: xai-oauth
base_url: https://api.x.ai/v1

Provider aliases

All of the following resolve to xai-oauth:

indagis --provider xai-oauth # canonical
indagis --provider grok-oauth # alias
indagis --provider x-ai-oauth # alias
indagis --provider xai-grok-oauth # alias

Once you're logged in via OAuth, every direct-to-xAI tool reuses the same bearer token automatically — there is no separate setup unless you'd rather use an API key.

To pick a backend for each tool:

indagis tools
# → Text-to-Speech → "xAI TTS"
# → Image Generation → "xAI Grok Imagine (image)"
# → Video Generation → "xAI Grok Imagine"
# → X (Twitter) Search → "xAI Grok OAuth (SuperGrok / X Premium+)"

If OAuth tokens are already stored, the picker confirms it and skips the credential prompt. If neither OAuth nor XAI_API_KEY is set, the picker offers a 3-choice menu: OAuth login, paste API key, or skip.

:::note Video generation is off by default The video_gen toolset is disabled by default. Enable it in indagis tools🎬 Video Generation (press space) before the agent can call video_generate. Otherwise the agent may fall back to the bundled ComfyUI skill, which is also tagged for video generation. :::

:::note X search auto-enables when xAI credentials are present The x_search toolset auto-enables whenever xAI credentials (a SuperGrok / X Premium+ OAuth token or XAI_API_KEY) are configured. Disable explicitly via indagis tools🐦 X (Twitter) Search (press space) if you don't want this. The tool routes through xAI's built-in x_search Responses API — it works with either your SuperGrok / X Premium+ OAuth login or a paid XAI_API_KEY, and prefers OAuth when both are configured (uses your subscription quota instead of API spend). The tool schema is hidden from the model when no xAI credentials are configured, regardless of whether the toolset is enabled. :::

Models

ToolModelNotes
Chatgrok-4.6Default; pinned to the top of the OAuth picker
Chatgrok-build-0.1Coding-oriented Grok Build model
Chatgrok-4.3Previous generation
Chatgrok-4.20-0309-reasoningReasoning variant
Chatgrok-4.20-0309-non-reasoningNon-reasoning variant
Chatgrok-4.20-multi-agent-0309Multi-agent variant
Imagegrok-imagine-imageDefault; ~5–10 s
Imagegrok-imagine-image-2.0Typography/layout-aware; strongest quality; ~10–20 s
Imagegrok-imagine-image-qualityHigher fidelity; ~10–20 s
Videogrok-imagine-videoText-to-video
Videogrok-imagine-video-1.5-previewImage-to-video; dated alias grok-imagine-video-1.5-2026-05-30
TTS(default voice)xAI /v1/tts endpoint

The chat catalog is derived live from the on-disk models.dev cache; new xAI releases appear automatically once that cache refreshes. grok-4.6 is always pinned to the top of the list.

Environment Variables

VariableEffect
XAI_BASE_URLOverride the default https://api.x.ai/v1 endpoint (rarely needed).

To select xAI as the active provider, set model.provider: xai-oauth in config.yaml (use indagis setup for the guided flow) or pass --provider xai-oauth for a single invocation.

Troubleshooting

Token expired — not re-logging in automatically

Indagis refreshes the token before each session and again reactively on a 401. If refresh fails with invalid_grant (the refresh token was revoked, or the account was rotated), Indagis surfaces a typed re-auth message instead of crashing.

When the refresh failure is terminal (HTTP 4xx, invalid_grant, revoked grant, etc.), Indagis marks the refresh token as dead and quarantines it locally — subsequent calls skip the doomed refresh attempt instead of replaying the same 401 over and over. The agent surfaces a single "re-authentication required" message and stays out of the way until you log in again.

Fix: run indagis auth add xai-oauth again to start a fresh login. The quarantine clears on the next successful exchange.

Authorization timed out

Device-code approval has a finite expiry window (xAI sets expires_in on the device-code response, typically on the order of tens of minutes). If you do not approve the login in time, Indagis raises a timeout error.

Fix: re-run indagis auth add xai-oauth (or indagis model). The flow starts fresh.

Logging in from a remote server

On SSH or container sessions Indagis prints the verification URL and user code instead of opening a browser. Open that URL in a browser on your laptop or in a cloud console — no SSH port forward is needed for xAI Grok OAuth.

indagis auth add xai-oauth --no-browser

For loopback-redirect providers (Spotify, MCP servers), see OAuth over SSH / Remote Hosts.

HTTP 403 after a successful login (tier / entitlement)

OAuth completed in the browser, tokens are saved, but inference or token refresh returns HTTP 403 with a message similar to "The caller does not have permission to execute the specified operation".

This is not a stale-token problem — re-running indagis model won't change it. xAI's backend has been seen to restrict OAuth API access to specific SuperGrok tiers despite the in-app subscription being active (issue #26847).

Fix: set XAI_API_KEY and switch to the API-key path:

export XAI_API_KEY=xai-...
indagis config set model.provider xai

Or upgrade your subscription at x.ai/grok if the OAuth route is required.

"No xAI credentials found" error at runtime

The auth store has no xai-oauth entry and no XAI_API_KEY is set. You haven't logged in yet, or the credential file was deleted.

Fix: run indagis model and pick the xAI Grok OAuth provider, or run indagis auth add xai-oauth.

Logging Out

To remove all stored xAI Grok OAuth credentials:

indagis auth logout xai-oauth

This clears both the singleton OAuth entry in auth.json and any credential-pool rows for xai-oauth. Use indagis auth remove xai-oauth <index|id|label> if you only want to drop a single pool entry (run indagis auth list xai-oauth to see them).

See Also