Origin Docs
Console

Gateway Console

Manage API keys, browse models, test inference in the Playground, and configure team access from the ORGN Gateway console at gateway.orgn.com.

The Gateway console at gateway.orgn.com is the web interface for managing ORGN Gateway. Use it to create API keys, explore the model catalog, test inference interactively, and administer team access and billing.

Sign in with id-orgn SSO only — there is no email/password login. See Authentication for credential details.

Console vs API vs Scanner

ORGN Gateway splits responsibilities across three surfaces:

SurfaceURLPurpose
Consolegateway.orgn.comKey management, model browsing, playground testing, team admin
APIapi.gateway.orgn.com/v1Production inference — OpenAI-compatible endpoints
Scannerscanner.orgn.comAttestation verification for TEE requests

Attestation verification lives in Scanner, not the Gateway console. The console helps you configure access and test models; Scanner lets you independently verify that TEE inference ran inside a genuine Trust Domain.

Console sections

API Keys

Create, name, and revoke sk-ollm-* API keys for programmatic access. Keys are shown once at creation — store them in a secrets manager immediately.

Model List

Browse the full model catalog with execution-type indicators. Models are grouped by provider and tagged as TEE (hardware-isolated, attested) or ZDR (zero data retention via Vercel). Model IDs use underscores throughout.

Playground

Send test inference requests directly from the browser. Select a model, compose a prompt, and inspect the response without writing integration code. Useful for evaluating models before wiring them into an application.

Team

Create teams, invite collaborators, assign roles (Owner, Admin, Member, Viewer), and manage per-team billing balances.

Sandboxes

Provision isolated execution environments for development and testing workflows tied to your Gateway account.

Typical workflow

  1. Sign in at gateway.orgn.com via id-orgn.
  2. Create an API key under API Keys. Copy the sk-ollm-* value to your secrets manager.
  3. Browse models in the Model List. Note whether each model is TEE or ZDR based on your compliance requirements.
  4. Test in the Playground before integrating a model into your application.
  5. Send production requests to https://api.gateway.orgn.com/v1 with Authorization: Bearer sk-ollm-....
  6. Verify TEE requests in scanner.orgn.com to inspect attestation status and cryptographic proof.

TEE vs ZDR in the console

Not every model runs in a Trusted Execution Environment. The console surfaces execution type so you can make informed selections:

TypeIndicatorAttestationBest for
TEEnear_*, phala_* prefixes; TEE badgeYes — verify in ScannerRegulated workloads, audit requirements
ZDRvercel_* prefix; ZDR badgeNo — policy-enforced retentionBroad frontier catalog, multimodal models

Both types enforce zero data retention. The difference is how privacy is guaranteed: hardware attestation for TEE, provider agreements for ZDR.

What's next

On this page