Apodex: Apodex 1.1 Mini
apodex/apodex-1.1-mini
Access Apodex 1.1 Mini from Apodex using Puter.js AI API.
Get Started// npm install @heyputer/puter.js
import { puter } from '@heyputer/puter.js';
puter.ai.chat("Explain quantum computing in simple terms", {
model: "apodex/apodex-1.1-mini"
}).then(response => {
document.body.innerHTML = response.message.content;
});
<html>
<body>
<script src="https://js.puter.com/v2/"></script>
<script>
puter.ai.chat("Explain quantum computing in simple terms", {
model: "apodex/apodex-1.1-mini"
}).then(response => {
document.body.innerHTML = response.message.content;
});
</script>
</body>
</html>
# pip install openai
from openai import OpenAI
client = OpenAI(
base_url="https://api.puter.com/puterai/openai/v1/",
api_key="YOUR_PUTER_AUTH_TOKEN",
)
response = client.chat.completions.create(
model="apodex/apodex-1.1-mini",
messages=[
{"role": "user", "content": "Explain quantum computing in simple terms"}
],
)
print(response.choices[0].message.content)
curl https://api.puter.com/puterai/openai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_PUTER_AUTH_TOKEN" \
-d '{
"model": "apodex/apodex-1.1-mini",
"messages": [
{"role": "user", "content": "Explain quantum computing in simple terms"}
]
}'
Model Card
Apodex 1.1 Mini is a 35-billion-parameter open-weight model from Apodex, built for long-horizon agentic work such as research, financial analysis, and coding tasks that involve files, search, and code execution rather than single-turn chat. It is a mixture-of-experts model (Qwen3.5-35B-A3B architecture, Apache 2.0 license), the smaller open-weight sibling of the larger hosted Apodex 1.1, and supports a 256K-token context window with text and image input.
The model supports native function calling, with tool schemas passed through the standard tools= parameter and results returned in OpenAI-compatible tool_calls format, so it can run in existing agent loops without custom parsing.
On Apodex's own benchmarks, using its Agent Team multi-agent setup, Apodex 1.1 Mini scores 50.2 on FrontierFinance, 51.7 on FrontierScience-Research, and 27.7 on APEX-Agents, putting it in the range of larger models like Kimi K2.6 and DeepSeek V4 Flash on the same tests.
Context Window 256K
tokens
Max Output 256K
tokens
Input Cost $0.08
per million tokens
Output Cost $0.8
per million tokens
Input text, image, video
modalities
Tool Use Yes
Release Date Aug 24, 2026
Model Playground
Try Apodex 1.1 Mini instantly in your browser.
This playground uses the Puter.js AI API — no API keys or setup required.
More AI Models From Apodex
Frequently Asked Questions
You can access Apodex 1.1 Mini by Apodex through Puter.js AI API. Include the library in your web app or Node.js project and start making calls with just a few lines of JavaScript — no backend and no configuration required. You can also use it with Python or cURL via Puter's OpenAI-compatible API.
Yes, it is free if you're using it through Puter.js. With the User-Pays Model, you can add Apodex 1.1 Mini to your app at no cost — your users pay for their own AI usage directly, making it completely free for you as a developer.
| Price per 1M tokens | |
|---|---|
| Input | $0.08 |
| Output | $0.8 |
Apodex 1.1 Mini was created by Apodex and released on Aug 24, 2026.
Apodex 1.1 Mini supports a context window of 256K tokens. For reference, that is roughly equivalent to 512 pages of text.
Apodex 1.1 Mini can generate up to 256K tokens in a single response.
Apodex 1.1 Mini accepts the following input types: text, image, video. It produces: text.
Yes, Apodex 1.1 Mini supports tool use (function calling), allowing it to interact with external tools, APIs, and data sources as part of its response flow.
Yes — the Apodex 1.1 Mini API works with any JavaScript framework, Node.js, or plain HTML through Puter.js. Just include the library and start building. See the documentation for more details.
Get started with Puter.js
Add Apodex 1.1 Mini to your app without worrying about API keys or setup.
Read the Docs View Tutorials