Management Console

Console

Manage your AI infrastructure from a single dashboard. Control API keys, monitor usage, manage billing, and configure team access — all in one place.

TechStone Console
All systems operational

Total Tokens

4.65M

↑ 12% this week

Monthly Cost

$29.93

Budget: $500.00

API Keys

3

All active

Avg Latency

340ms

↓ 5% vs last week

Token Usage by Model

GPT-4o
38%
Claude 3.7
28%
DeepSeek V3
22%
StoneCloud
12%

Recent Activity

2 min ago
API call completedgpt-4o — 1,247 tokens
5 min ago
API call completedclaude-3.7-sonnet — 856 tokens
12 min ago
Rate limit warningdeepseek-v3 approaching limit
1 hr ago
API key rotatedkey_prod_***abc

Everything You Need to Manage

Dashboard Overview

Your central command center for all AI infrastructure operations.

  • Real-time token consumption
  • Cost tracking by model and project
  • Active API keys and their status
  • Usage trends and forecasting

API Keys

Manage credentials with granular control.

  • Create keys with custom scopes
  • Set per-key rate limits
  • Monthly budget caps per key
  • One-click key rotation

Monitoring

Keep your AI stack healthy and performant.

  • Latency and throughput dashboards
  • Error rate monitoring
  • Custom alerts and notifications
  • Regional availability status

Console Features & CLI

All console operations are also available via our CLI tool for automation and scripting.

Get Started in 3 Steps

1

Create an Account

Sign up with your email. No credit card required — start with $5 in free credits.

2

Generate an API Key

Navigate to the API Keys section and create your first key with appropriate scopes.

bash
# Install the CLI
npm install -g @techstoneai/cli

# Login to your account
techstone login

# Create your first API key
techstone keys create --name "my-first-key"
3

Start Building

Use your API key to make your first request. Check out the SDK Reference for detailed guides.

bash
# Set your API base URL
export API_BASE_URL="<your-api-base-url>"

# Make your first API call
curl ${API_BASE_URL}/v1/chat/completions \
  -H "Authorization: Bearer $TECHSTONE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-4o",
    "messages": [{"role": "user", "content": "Hello TechStone!"}]
  }'