General

Account info, integration reference, and org-level metadata. Members and roles live in their own tabs above.

Account
Org ID
User ID
Token expires
StatusNO TOKEN
Data & Retention
Event TTL90 days
Tag-rule refresh~30 seconds
Auto-purpose cache24 hours
JWT lifetime24 hours
Regionus-east-2
Proxy Endpoint
Base URL
https://api.ceggesta.com

Drop-in replacement for OpenAI / Anthropic / Google base URLs — keep the rest of the path unchanged. Auth uses your Ceggesta bearer in the standard Authorization header. Issue new bearers on the API Keys page.

curl -sS https://api.ceggesta.com/v1beta/models/gemini-1.5-flash:generateContent \
  -H "Authorization: Bearer ck_live_..." \
  -H "X-Cg-Tag-Department: engineering" \
  -H "X-Cg-Tag-User: [email protected]" \
  -H "X-Cg-Tag-Purpose: code-review" \
  -d '{"contents":[{"parts":[{"text":"hello"}]}]}'

The X-Cg-Tag-*headers above are layer-2 tags — they override account-level defaults (set per API key) and feed every attribution panel on the dashboard. Unknown dimensions are ignored, so it's safe to send extras.

Tag Reference
DimensionHeaderExampleNotes
departmentX-Cg-Tag-DepartmentengineeringOrg chart bucket — drives the department breakdown panel.
userX-Cg-Tag-User[email protected]Per-person attribution. Use whatever id maps back to your IDP.
projectX-Cg-Tag-Projectrecommender-v2Project / workstream id. Optional but recommended for ROI rollups.
purposeX-Cg-Tag-Purposecode-reviewWhat the call is for — coexists with auto-purpose from the classifier.
environmentX-Cg-Tag-Environmentprodprod / staging / dev — useful for separating real spend from CI noise.
Coming Soon
  • Usage-based billing (Stripe)
  • Webhook subscriptions for events / spend thresholds
  • Per-key spend caps + automatic kill-switches
  • SSO (SAML/OIDC for enterprise tenants)