Fugu Ultra API

Multi-agent conductor that orchestrates frontier expert models for hard reasoning, coding, and research, with 1M context, image input, and web search.

Sakana AIText Generation1M contextReleased Jun 21, 2026Proprietary EndpointNew

About Fugu Ultra

Multi-agent conductor that orchestrates frontier expert models for hard reasoning, coding, and research, with 1M context, image input, and web search.

Supports text and image input, a 1M token context, function calling, JSON mode structured output, and built-in web search. Reasoning is always on with effort levels high, xhigh, and max (xhigh and max apply the most effort). Web search has no separate fee; its cost is reflected in the orchestration tokens the conductor reports in usage. Orchestration tokens are billed at the same input and output rates as your prompt and final answer, so even short requests include orchestration cost.

Also known as Sakana AI Fugu Ultra, Fugu-Ultra

reasoningmultimodalweb searchfunction callingstructured outputagentic codingcache

Fugu Ultra specs

Model ID
fugu-ultra
Provider
Sakana AI
Category
Text Generation
Released
Jun 21, 2026
Context window
1M tokens
Max output
131,072 tokens
Input
TextImage
Output
Text
Endpoints
POST /v1/chat/completions
POST /v1/responses
POST /v1/messages

Fugu Ultra API pricing

Live pay-as-you-go rates from the EmpirioLabs catalog. You are billed only for what you use, with no monthly minimum.

Type
Spec
Rate
Input
per 1M prompt tokens
<=272K $7.50>272K $15.00
Output
per 1M generated tokens
<=272K $45.00>272K $67.50
Implicit cache read
per 1M cached input tokens
<=272K $1.50>272K $3.00
Compare on the full pricing page

How to call the Fugu Ultra API

Fugu Ultra serves the OpenAI-compatible Chat Completions API. Point any OpenAI SDK at https://api.empiriolabs.ai/v1 with your EmpirioLabs API key and use the model id fugu-ultra. Get an API key from the EmpirioLabs dashboard.

cURL
curl https://api.empiriolabs.ai/v1/chat/completions \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "fugu-ultra",
    "messages": [
      {"role": "user", "content": "Write a haiku about the ocean."}
    ]
  }'
Python (OpenAI SDK)
from openai import OpenAI

client = OpenAI(
    base_url="https://api.empiriolabs.ai/v1",
    api_key="YOUR_EMPIRIOLABS_API_KEY",
)

response = client.chat.completions.create(
    model="fugu-ultra",
    messages=[{"role": "user", "content": "Write a haiku about the ocean."}],
)
print(response.choices[0].message.content)
Full Fugu Ultra API reference

Fugu Ultra API parameters

Request parameters supported by the Fugu Ultra API on EmpirioLabs. Defaults apply when a field is omitted.

ParameterTypeDefaultRange / valuesDescription
max_tokensinteger327681 to 131072Maximum number of output tokens for the final answer. The conductor needs room to work, so very small values can return empty output.
reasoning_effortenumhighhigh, xhigh, maxHow hard Fugu Ultra reasons. Reasoning is always on. The default is high; xhigh and max are aliases of the same maximum effort (more thorough and slower than high).
tool_web_searchbooleanfalse-Enable built-in web search. There is no separate fee; the search cost is reflected in the orchestration tokens billed for the request.
toolsarray[]-OpenAI-compatible function calling tool definitions.
tool_choiceobject--OpenAI-compatible tool choice control.
response_formatobject--OpenAI-compatible JSON mode for structured output.

Good to know

Fugu Ultra is a multi-agent conductor: each request coordinates a pool of expert models and composes their work into a single answer.

Latency and streaming

  • Responses can take from a few seconds to a few minutes on complex prompts.
  • The full answer is returned all at once when the model finishes, not token by token. Streaming is accepted, but it delivers the complete response at the end rather than streaming tokens as they generate.
  • Leave generous max_tokens headroom, since very small limits can truncate or empty the answer.

Capabilities

  • Text and image input, with a 1M token context.
  • Always-on reasoning. high is the default; xhigh and max are the same maximum effort.
  • Function calling, JSON mode, and built-in web search that cites its sources when available (no separate fee).

Billing

  • Billed on full token usage, including the orchestration tokens the model uses internally, so even short prompts carry some cost.
  • Context-tiered: requests above 272K total input tokens use the higher rate shown.

Fugu Ultra API: common questions

How much does the Fugu Ultra API cost?

On EmpirioLabs, Fugu Ultra is billed pay as you go: Input <=272K $7.50; >272K $15.00 per 1M prompt tokens; Output <=272K $45.00; >272K $67.50 per 1M generated tokens; Implicit cache read <=272K $1.50; >272K $3.00 per 1M cached input tokens. The live rate card on this page always matches what the API charges.

What is the context window of Fugu Ultra?

Fugu Ultra supports a 1M-token context window with up to 131,072 output tokens per response.

Is the Fugu Ultra API OpenAI-compatible?

Yes. Fugu Ultra serves the OpenAI-compatible Chat Completions API, so existing OpenAI SDKs work by pointing base_url at https://api.empiriolabs.ai/v1 and setting the model id to fugu-ultra.

Can I try Fugu Ultra in the browser before integrating?

Yes. The EmpirioLabs playground runs Fugu Ultra in the browser with the same parameters the API exposes, so you can test prompts before writing code.

How do I get a Fugu Ultra API key?

Create an EmpirioLabs account, then generate a key under API Keys in the dashboard. Billing is pay-as-you-go credits, so you only pay for the requests you make.

Ready to use better endpoints?

Check out our pricing or reach out if you want your own model deployed on our stack.