Quick Start

Get your first API call running in 15 minutes. Based on TeleAI Pilot Quick Start Guide (V36).

Prerequisites

ItemRequirement
CredentialsPortal login delivered by TeleAI CS
API Keyteleai_* key via secure channel
Base URLProvided by TeleAI (e.g. your pilot API endpoint)

Log In to Portal

  1. Open the Portal URL provided by TeleAI.
  2. Enter your email and password.
  3. Complete MFA enrollment if prompted.
  4. 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>"