TokenRaAI Model Catalog
Union Alpha API ยท Free access via TokenRa

Union Alpha API: Free 262K Multimodal Model

Build with the Union Alpha API for research, coding, and agentic workflows. Currently free on TokenRa, with a 262K-token context window and text plus image input. Follow the quick guide below to get an API key and send your first request.

FreeNo per-token cost listed.
262K contextConfirm current account limits.
Text + imageMultimodal input, text output.

A free multimodal model for research and agents

Union Alpha is a multimodal model available on TokenRa as union-alpha. It accepts text and image input, returns text, and provides a 262,144-token context window with up to 131,072 tokens of output. The provider is undisclosed and listed as Stealth.

01

Long-context work

A 262K-token window suits large codebases, long documents, and multi-step agent transcripts.

02

Tools and structured output

Supports OpenAI-compatible function calling and response_format. Validate output in your application.

03

Multimodal input

Union Alpha accepts text and image input on the enabled integration.

Union Alpha specifications

The values below reflect the specifications published for this model. Confirm the live limits and availability for your account in the TokenRa console before relying on them.

  • Model ID: union-alpha; provider listed as Stealth and operated independently of TokenRa.
  • Released September 16, 2026; currently listed at no per-token cost.
  • Context window 262,144 tokens; maximum output 131,072 tokens.
  • Input and output: text plus image in, text out.
  • Tool calling supported through tools and tool_choice; structured output through response_format, with JSON schema accepted but not strictly enforced.
  • Reported performance: around 17.6 seconds P50 latency, near 14 tokens per second throughput, and about 98% uptime over a three-day window.

Where Union Alpha fits

Union Alpha favors depth and context length over response speed, which shapes where it works well.

  • Batch processing and asynchronous jobs where latency is not user-facing.
  • Long-form generation that benefits from a large output ceiling.
  • Repository-scale code reading and analysis within a single context.
  • Agentic workflows with tool calls, clear stopping conditions, and application-level validation.
  • Exploratory research and prototyping where zero per-token cost matters more than speed.

How to get a Union Alpha API key

Register for TokenRa, open the dashboard, create an API key, confirm that Union Alpha is enabled for your account, and then send an OpenAI-compatible request from your server. Keep the key private and verify the live model identifier before production use.

1

Create a TokenRa account

Register, then open the TokenRa dashboard.

2

Create your API key

Open the API key or token section, create a key, and store it server-side.

3

Send a test request

Confirm the enabled model ID, test a representative workload, and add production controls.

curl https://tokenra.io/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"union-alpha","messages":[{"role":"user","content":"YOUR_TEST_PROMPT"}]}'

Any OpenAI-compatible client works the same way: point the API base at https://tokenra.io/v1 and set the model ID to union-alpha.

import openai

client = openai.OpenAI(
    base_url="https://tokenra.io/v1",
    api_key="YOUR_API_KEY",
)
response = client.chat.completions.create(
    model="union-alpha",
    messages=[{"role": "user", "content": "YOUR_TEST_PROMPT"}],
)
print(response.choices[0].message.content)

Union Alpha pricing: currently free

Union Alpha is currently listed at no per-token cost through TokenRa for both input and output. No credit card is required to get started. Free access is promotional and can change without notice; access is also subject to account eligibility, provider availability, and applicable rate limits. Verify the live TokenRa console before production use.

Input

$0 / 1M tokens

No input cost currently listed for Union Alpha.

Output

$0 / 1M tokens

No output cost currently listed for Union Alpha.

Rate limits

Account-based

Check the TokenRa console for current RPM and quota limits.

Undisclosed provider (Stealth)

Union Alpha is developed and operated by an undisclosed third-party provider listed as Stealth. No company name or research paper has been published. TokenRa provides API access to it as a routing gateway, and is not the model developer or owner.

What to watch out for

Free access does not remove operational tradeoffs. Review these points before depending on Union Alpha in production.

  • High latency: around 17.6 seconds at P50, which rules out real-time chat and low-latency agents.
  • Modest throughput: near 14 tokens per second, so streaming responsiveness will feel slow.
  • Availability: about 98% uptime over a three-day window, measured on a recently launched free model.
  • Undisclosed provider: no published company, model card, or research paper to evaluate.
  • Structured output is not schema-enforced, so validate and repair JSON in your application.
  • Free pricing is promotional and can change; design for a fallback model.

Production checklist

  • Keep API keys on the server and separate credentials by environment.
  • Confirm the 262K-token context and supported input modalities against the live integration before relying on them.
  • Set generous timeouts that account for the reported P50 latency, plus bounded retries and tracing.
  • Validate structured output against your own schema rather than trusting response_format.
  • Configure a fallback model for availability gaps and for any change to free pricing.
  • Review data handling, provider terms, privacy requirements, and output rights for your use case.

Union Alpha API FAQ

What is Union Alpha?

Union Alpha is a multimodal large language model available on TokenRa as union-alpha, built for research, coding, and agentic workflows. It accepts text and image input and returns text, with a 262,144-token context window.

Is Union Alpha free?

Union Alpha is currently listed at no per-token cost on TokenRa. Free access is promotional and can change; confirm current rates and account limits in the TokenRa console before production use.

What is the context length?

The stated context window is 262,144 tokens with a maximum output of 131,072 tokens. Confirm the live limits for your account in the TokenRa console.

Does Union Alpha support tool calling?

Yes. It supports OpenAI-compatible function calling through tools and tool_choice, and structured output through response_format. JSON schema is accepted but not strictly enforced, so validate output in your application.

Who develops Union Alpha?

It is developed and operated by an undisclosed third-party provider listed as Stealth. No company name or research paper has been published. TokenRa provides API access as a routing gateway and is not the model developer or owner.

Why is Union Alpha slow?

Reported latency is around 17.6 seconds at P50 with throughput near 14 tokens per second. It suits batch processing, long-form generation, and asynchronous workloads rather than real-time chat or low-latency agents.

Union Alpha is developed and operated by an undisclosed third-party provider listed as Stealth. Specifications and performance figures on this page reflect published provider information and may change. Provider and related names belong to their respective rights holders. TokenRa provides API access as a routing gateway and is not the model developer or owner.