Very long context
A 1M-token window suits large codebases, long documents, and multi-step agent transcripts that would otherwise need chunking.
Build with the Space Bunny Alpha API for long-context work, coding, and multimodal input. Currently free on TokenRa, with a 1M-token context window and text, image and video input. Follow the quick guide below to get an API key and send your first request.
Space Bunny Alpha is a multimodal model available on TokenRa as space-bunny-alpha. It accepts text, image and video input, returns text, and provides a 1,000,000-token context window with up to 524,288 tokens of output. The provider is undisclosed and listed as a stealth release.
A 1M-token window suits large codebases, long documents, and multi-step agent transcripts that would otherwise need chunking.
Unlike most text-only stealth releases, this one accepts video as well as images — useful for reviewing recordings and screen captures.
Supports OpenAI-compatible function calling and response_format. JSON schema is accepted but not strictly enforced, so validate output in your application.
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.
space-bunny-alpha; provider undisclosed and operated independently of TokenRa.tools and tool_choice; structured output through response_format, with JSON schema accepted but not strictly enforced.Its combination of 1M context, video input and zero cost shapes where it works well — and where it does not.
Register for TokenRa, open the dashboard, create an API key, confirm that Space Bunny 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.
Register, then open the TokenRa dashboard.
Open the API key or token section, create a key, and store it server-side.
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":"space-bunny-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 space-bunny-alpha.
import openai
client = openai.OpenAI(
base_url="https://tokenra.io/v1",
api_key="YOUR_API_KEY",
)
response = client.chat.completions.create(
model="space-bunny-alpha",
messages=[{"role": "user", "content": "YOUR_TEST_PROMPT"}],
)
print(response.choices[0].message.content)Space Bunny 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.
No input cost currently listed for Space Bunny Alpha.
No output cost currently listed for Space Bunny Alpha.
Check the TokenRa console for current RPM and quota limits.
Space Bunny Alpha's developer has not been officially disclosed, and no vendor has claimed the model. No company name, model card, or research paper has been published. TokenRa provides API access to it as a routing gateway, and is not the model developer or owner.
Free access does not remove operational tradeoffs, and an anonymous release adds two of its own. Review these points before depending on Space Bunny Alpha in production.
Space Bunny Alpha appeared anonymously, and no vendor has claimed it. That is the current state of the public record, and it is worth stating plainly rather than filling the gap with a guess.
Independent fingerprint analysis of a same-codename model served through a different gateway reported a MiniMax-family tokenizer. Tokenizer evidence identifies a family, not a product or a generation, so it does not settle the question. For the full evidence chain, including what would and would not resolve it, see our independent analysis at Is Space Bunny Alpha MiniMax?
Prompts and completions are retained by the provider and are not used for training. Because the provider is undisclosed, its own terms govern rather than TokenRa's. Review the applicable terms before sending sensitive or regulated information.
space-bunny-alpha into your own API surface — keep it in configuration so a claim or rename is a config change, not a deploy.The Space Bunny Alpha API provides OpenAI-compatible access to Space Bunny Alpha, an anonymous multimodal model available on TokenRa as space-bunny-alpha, with a 1,000,000-token context window and text, image and video input.
Create a TokenRa account, open the dashboard, create an API key, confirm Space Bunny Alpha is enabled for your account, and use the key in a server-side integration.
It 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.
The stated context window is 1,000,000 tokens with a maximum output of 524,288 tokens. Confirm the live limits for your account in the TokenRa console.
It accepts text, image and video input and returns text. It supports OpenAI-compatible function calling through tools and tool_choice, and structured output through response_format, with JSON schema accepted but not strictly enforced. Confirm current capabilities in the TokenRa console.
Its developer has not been officially disclosed, and no vendor has claimed the model. No company name, model card, or research paper has been published. TokenRa provides the API gateway and is not the model developer or owner.
Space Bunny Alpha's developer has not been officially disclosed, and no vendor has claimed the model. Specifications 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.