Client portal

Account pending payment activation.

Enter your email and the reset token provided by Gray Room support. Your reset token is your API key — contact cgamld1110@gmail.com to retrieve it.

Dashboard

Welcome to your Strata client portal.

Your tier

--

Calls used

0

This month

Database

--

Games classified

Library

--

Saved games

Quick actions

Your API key

Loading...

Use this in the x-api-key header for all programmatic requests.

Game catalog

Full database with domain scores and classification narratives. Click any game to expand.

Loading catalog...

Classify a game

Submit any title. If not in the database it will be classified via AI and stored permanently.

Auto-classify by title

Results include domain scores, classification narrative, and a Strata synopsis.

Similarity search

Find games most experientially similar to any title in the database.

Compare games

Side-by-side experiential comparison with shared anchors, shared lows, divergence points, and a Strata synopsis.

Saved games

Your personal game library. Games not in the database are classified automatically when added.

Add a game

Loading library...

Usage & tier

Your current plan, monthly limits, and API key.

Tier

--

Monthly limit

--

API calls

Used

0

Tracking coming soon

Your API key

Include as x-api-key in all direct API requests. Keep this private.

Loading...

Upgrade or contact us

Email us to upgrade your tier or request Enterprise pricing.

Email: cgamld1110@gmail.com

API documentation

Endpoint reference with Python and JavaScript examples.

Base URL and authentication

Base: https://web-production-a3f07.up.railway.app

Loading...
GET/v1/catalog

All classified games with domain scores, metadata, and narratives.

import requests r = requests.get( "https://web-production-a3f07.up.railway.app/v1/catalog", headers={"x-api-key": "YOUR_API_KEY"} ) games = r.json()
GET/v1/match/{title}

Ranked similar games for a title. Optional top_n param (default 5).

import requests r = requests.get( "https://web-production-a3f07.up.railway.app/v1/match/Elden Ring", params={"top_n": 10}, headers={"x-api-key": "YOUR_API_KEY"} ) results = r.json()
POST/v1/process

Classify any game on demand. Returns instantly if in database; classifies via AI and stores permanently if not.

import requests r = requests.post( "https://web-production-a3f07.up.railway.app/v1/process", json={"title": "Hollow Knight", "force_reclassify": False}, headers={"x-api-key": "YOUR_API_KEY"} ) profile = r.json()
GET/v1/client/usage

Your tier, monthly call limit, and calls used.

import requests r = requests.get( "https://web-production-a3f07.up.railway.app/v1/client/usage", headers={"Authorization": "Bearer YOUR_JWT_TOKEN"} ) usage = r.json()