Manage your AI infrastructure from a single dashboard. Control API keys, monitor usage, manage billing, and configure team access — all in one place.
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
Recent Activity
Your central command center for all AI infrastructure operations.
Manage credentials with granular control.
Keep your AI stack healthy and performant.
All console operations are also available via our CLI tool for automation and scripting.
Sign up with your email. No credit card required — start with $5 in free credits.
Navigate to the API Keys section and create your first key with appropriate scopes.
# 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"Use your API key to make your first request. Check out the SDK Reference for detailed guides.
# 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!"}]
}'