Dashboard
Good morning — here's your API overview
Usage by Module
LivePlatform Distribution
All APIsRecent Activity
| Time | Token | Platform | Module | Tokens | Cost | Status |
|---|---|---|---|---|---|---|
| Loading… | ||||||
Analytics
Detailed usage metrics across all platforms
7-Day Request Trend
Module Share
Daily Cost Breakdown
API Tokens
Your team's tokens — powered by backend platform APIs
| Token Name | Platform | Module | Status | Daily Usage | Monthly Usage | Rate Limit | Actions |
|---|---|---|---|---|---|---|---|
| Loading tokens… | |||||||
Activity Log
Real-time API request log from apis.thepuneet.com
| Timestamp | Token | Platform | Module | Tokens Used | Cost | Latency | Status |
|---|---|---|---|---|---|---|---|
| Loading… | |||||||
Platform API Keys
Admin-only: Manage underlying API keys for all platforms. Team members never see these.
Connected Platform Keys
| Platform | Key (Masked) | Models Available | Status | Added | Actions |
|---|---|---|---|---|---|
No platform keys addedAdd your OpenAI, Google Cloud, or other API keys to get started | |||||
Team Access Management
Control who can access the portal and their permission level
Team Members
0 members| Member | Role | Tokens Assigned | Last Active | Actions | |
|---|---|---|---|---|---|
No team members yetInvite your team to access the portal with controlled permissions | |||||
Access Control Rules
- ✅ View dashboard & analytics
- ✅ View token list & usage stats
- ✅ Copy their own token
- ✅ View activity log
- ✅ Read documentation
- ❌ Create/delete tokens
- ❌ View platform API keys
- ❌ Manage team members
- ✅ All Viewer permissions
- ✅ Create / edit / delete tokens
- ✅ Add & manage platform API keys
- ✅ Invite & manage team members
- ✅ Set token quotas & rate limits
- ✅ Export logs & analytics
- ✅ View cost breakdown
- ✅ Full admin access
API Documentation
Integration guide for https://apis.thepuneet.com/
API Key Authentication
Use the token from this portal via the x-api-key header. Never share raw platform keys.
# All requests go to YOUR backend — not directly to OpenAI/Google
BASE_URL=https://apis.thepuneet.com
curl -X POST "$BASE_URL/request" \
-H "x-api-key: YOUR_PORTAL_TOKEN" \
-H "Content-Type: application/json" \
-d '{"type":"lead_reply","platform":"openai","data":{...}}'
Available Endpoints
| Method | Endpoint | Description | Auth |
|---|---|---|---|
| POST | /request | Submit AI request (routes to correct platform) | Token |
| GET | /tokens | List tokens | Token |
| POST | /tokens | Create token | Admin |
| PATCH | /tokens/:id | Update token | Admin |
| DELETE | /tokens/:id | Delete token | Admin |
| GET | /logs | Activity logs | Token |
| GET | /platforms | List connected platforms | Admin |
| POST | /platforms | Add platform API key | Admin |
| GET | /health | Health check | None |
Request Format
OpenAI — Lead Reply
{
"type": "lead_reply",
"platform": "openai",
"model": "gpt-4o",
"data": { "name": "Jane", "message": "..." }
}Google Cloud — Text Generation
{
"type": "text_generate",
"platform": "google",
"model": "gemini-1.5-pro",
"data": { "prompt": "..." }
}Anthropic Claude
{
"type": "ticket_reply",
"platform": "anthropic",
"model": "claude-sonnet-4-6",
"data": { "issue": "...", "priority": "high" }
}Supported Platforms
GPT-4o, GPT-4o mini, o1, o1-mini, DALL·E, Whisper, TTS
platform: "openai"
Gemini 1.5 Pro/Flash, PaLM 2, Vertex AI, Vision API
platform: "google"
Claude 3.5 Sonnet, Claude 3 Opus, Claude Haiku
platform: "anthropic"
Enterprise-grade GPT-4 via Microsoft Azure
platform: "azure"
Ollama, LM Studio, or any OpenAI-compatible endpoint
platform: "custom"
Fast inference platforms — add via Custom Key
platform: "other"
Error Codes
| Code | Error | Meaning | Fix |
|---|---|---|---|
| 401 | UNAUTHORIZED | Missing/invalid portal token | Check x-api-key header |
| 403 | FORBIDDEN | Token inactive or no platform key | Activate token / add platform key |
| 429 | RATE_LIMITED | Per-minute limit hit | Retry after Retry-After header |
| 430 | QUOTA_EXCEEDED | Daily/monthly quota exhausted | Contact admin to increase quota |
| 500 | PLATFORM_ERROR | Upstream platform error (OpenAI etc.) | Check platform status page |
Settings
Account configuration and preferences
Account Info
Sign Out
Sign out from your current session on this device.