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.

    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

    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