API account
Get started
Keys belong only to this account. Come back here any time to create or revoke them.
1. Create an API key
The full key is shown once (uax_live_…). Copy it immediately. Keys expire after one year unless you revoke them sooner.
Copy this key now. It will not be shown again.
2. Send a chat request
Base URL:
https://us-central1-unified-analytix.cloudfunctions.net/llmApi/v1
Send the key as Authorization: Bearer uax_live_… or x-api-key.
curl https://us-central1-unified-analytix.cloudfunctions.net/llmApi/v1/chat/completions \
-H "Authorization: Bearer uax_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "Woodllc-SLM",
"messages": [
{"role": "user", "content": "Hello"}
]
}'
3. Use it from OpenAI-compatible clients
from openai import OpenAI
client = OpenAI(
api_key="uax_live_YOUR_KEY",
base_url="https://us-central1-unified-analytix.cloudfunctions.net/llmApi/v1",
)
resp = client.chat.completions.create(
model="Woodllc-SLM",
messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)
Streaming is not supported. Usage is in usage (prompt_tokens, completion_tokens, total_tokens). Rate limit is 60 requests per minute per key.
4. Push data into the Customer Data Platform
Send events and profiles server-to-server with the same API key. Everything lands in your tenant's CDP (Customer Data tab in the platform).
curl https://us-central1-unified-analytix.cloudfunctions.net/llmApi/v1/cdp/events \
-H "Authorization: Bearer uax_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"event": "order_completed",
"email": "customer@example.com",
"properties": {"orderId": "A-1042", "value": 129.00}
}'
Endpoints
GET /v1/models— lists Woodllc-SLM (no API key)POST /v1/chat/completions— chat completions (API key)GET /v1/charts/types— chart spec typesPOST /v1/charts/completions— chart-oriented completions (API key)POST /v1/cdp/events— ingest a customer event (API key)POST /v1/cdp/profiles— create or update a profile (API key)POST /v1/cdp/profiles/delete— delete a profile (API key)POST /v1/cdp/sync— run an activation sync to a destination (API key)GET /v1/cdp/overview— profiles, segments, destinations, jobs (API key)GET /v1/cdp/audit— recent CDP audit events (API key)
Need dashboards?
Switch to the full analytics platform ($499/month plus seats) for connections, dashboards, and team access. Your API keys keep working.
Upgrade to the platform