Quick Start
Get your first API call running in 15 minutes. Based on TeleAI Pilot Quick Start Guide (V36).
Prerequisites
| Item | Requirement |
|---|---|
| Credentials | Portal login delivered by TeleAI CS |
| API Key | teleai_* key via secure channel |
| Base URL | Provided by TeleAI (e.g. your pilot API endpoint) |
Log In to Portal
- Open the Portal URL provided by TeleAI.
- Enter your email and password.
- Complete MFA enrollment if prompted.
- Confirm you see the Dashboard with your organization name.
First Gateway Call
Replace <BASE_URL> and <API_KEY> with your values.
bash
curl -X POST "https://<BASE_URL>/v1/chat/completions" \
-H "Authorization: Bearer <API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-4o",
"messages": [
{"role": "user", "content": "Hello from TeleAI"}
],
"max_tokens": 100
}'Verify Usage
After your first call, check the Portal Dashboard or Usage page to confirm the request was recorded.
bash
curl "https://<BASE_URL>/v1/governance/usage/summary" \
-H "Authorization: Bearer <JWT_ACCESS_TOKEN>"