
TL;DR
Meta launches Muse Spark 1.1 through the new Meta Model API - a 1M-token-context model for personal agentic tasks with OpenAI-compatible endpoints, $20 free credits, and pricing that undercuts the competition.
Meta released Muse Spark 1.1 on July 9, 2026 and for the first time opened one of its in-house foundation models to outside developers through a new Meta Model API. This is Meta's first paid AI model - a multimodal reasoning model built for long, tool-heavy tasks that require planning and orchestration across apps and services.
| Resource | Link | Last Verified |
|---|---|---|
| Meta AI Blog Announcement | ai.meta.com/blog/introducing-muse-spark-meta-model-api | July 9, 2026 |
| Meta Developer Docs | developer.meta.com/ai/resources/blog/build-with-muse-spark | July 9, 2026 |
| Meta Model API Overview | developer.meta.com/docs/model-api | July 9, 2026 |
| Meta AI Platform | meta.ai | July 9, 2026 |
Muse Spark 1.1 is a closed-source multimodal reasoning model optimized for personal agentic tasks. The key capabilities:
Meta positions this against GPT-5.5 and Opus 4.8 on agentic evaluations, claiming top rankings on MedScribe, TaxEval, and Harvey's Legal Agent Bench while being "10x cheaper and twice as fast."
| Resource | Cost | Notes |
|---|---|---|
| Input tokens | $1.25 / million | Competitive with Claude Haiku |
| Output tokens | $4.25 / million | Below Sonnet 5 intro pricing |
| Free credits | $20 | For new developers in public preview |
The pricing positions Muse Spark 1.1 as a budget option for high-volume agentic workloads. At these rates, a typical 50K input / 2K output agentic turn costs about $0.07 - roughly half of what you'd pay for Claude Sonnet 5 at intro pricing.
The Meta Model API is currently in public preview for US-based developers. The API uses an OpenAI-compatible format, which means existing code using the OpenAI SDK can switch endpoints with minimal changes:
import OpenAI from 'openai';
const meta = new OpenAI({
apiKey: process.env.META_API_KEY,
baseURL: 'https://api.meta.ai/v1',
});
const response = await meta.chat.completions.create({
model: 'muse-spark-1.1',
messages: [
{ role: 'user', content: 'Analyze this codebase for security issues' }
],
tools: [
{
type: 'function',
function: {
name: 'read_file',
description: 'Read a file from the repository',
parameters: {
type: 'object',
properties: {
path: { type: 'string', description: 'File path' }
},
required: ['path']
}
}
}
]
});
Newsletter
Get the weekly deep dive
Tutorials on Claude Code, AI agents, and dev tools, delivered free every week.
From the archive
Jul 9, 2026 • 8 min read
Jul 8, 2026 • 7 min read
Jul 8, 2026 • 7 min read
Jul 8, 2026 • 6 min read
Muse Spark 1.1 supports structured tool calling with parallel execution:
const response = await meta.chat.completions.create({
model: 'muse-spark-1.1',
messages: [{ role: 'user', content: 'Find all TODO comments and create issues for them' }],
tools: [readFileTool, listFilesTool, createIssueTool],
parallel_tool_calls: true,
});
The model works with Model Context Protocol servers out of the box. If you're already using MCP with Claude Code or another MCP client, Muse Spark 1.1 can use the same server implementations without modification.
Muse Spark 1.1 can run as either a primary agent coordinating subagents or as a subagent itself. The model handles multi-turn agentic interactions with context compaction when approaching the 1M token limit.
Available in the Meta AI app, Thinking mode shows the model's reasoning process before it produces a final response - similar to extended thinking in Claude models. API access to reasoning tokens is not yet documented.
| Feature | Muse Spark 1.1 | Claude Opus 4.8 | GPT-5.5 |
|---|---|---|---|
| Context window | 1M tokens | 200K tokens | 256K tokens |
| Input price | $1.25/M | $15/M | $5/M |
| Output price | $4.25/M | $75/M | $15/M |
| Tool calling | Yes | Yes | Yes |
| MCP support | Yes | Yes | Via tools |
| Computer use | Yes | Yes | Yes |
| Multimodal | Image, video, PDF | Image, PDF | Image, video, PDF |
| Open weights | No | No | No |
Pricing is the standout differentiator. At $1.25/$4.25 per million tokens, Muse Spark 1.1 is roughly 12x cheaper on input and 18x cheaper on output than Opus 4.8, while Meta claims competitive benchmark performance.
Meta named three early API partners:
These integrations suggest Meta is targeting the same agentic coding and enterprise automation market that Anthropic and OpenAI dominate.
US-only preview. The Meta Model API is currently limited to US-based developers. International availability isn't announced.
Closed source. Unlike Llama, Muse Spark 1.1 is proprietary. You can't self-host or inspect the weights.
No detailed benchmarks published. Meta claims competitive performance but hasn't released SWE-bench or other standardized coding benchmark scores. The comparison claims ("rivals GPT-5.5 and Opus 4.8") are marketing language until verified independently.
Preview status. Production guarantees and SLAs aren't documented. This is explicitly a preview, not GA.
Good fit:
Not a fit:
https://api.meta.ai/v1No. Llama models are open-weights and can be self-hosted. Muse Spark 1.1 is a closed-source proprietary model only available through the Meta Model API.
Not currently. The public preview is limited to US-based developers. Meta hasn't announced international availability.
The API uses the same tool calling format as the OpenAI API, including parallel tool calls. Tools are defined as JSON schemas and the model returns structured tool call objects.
Rate limits aren't documented in the preview announcement. Expect typical API rate limiting based on your account tier.
Yes. The model accepts images, video, and PDFs as input. It can generate captions, analyze visual content, and produce code from visual designs.
It's the largest publicly available context window from a major provider. Claude Opus 4.8 offers 200K tokens, GPT-5.5 offers 256K tokens. The 1M window is genuinely useful for full-codebase analysis without chunking.
Meta AI is the consumer chat product (meta.ai). Muse Spark 1.1 is the underlying model now exposed through the developer API for programmatic access.
Yes. The Meta Model API is OpenAI-compatible. Change the base URL and API key, and your existing code should work with minimal modifications.
Read next
GPT-5.5 and 5.5 Pro hit the API on April 24. Here is what changes for builders: pricing, agentic tasks, tool-use, and the real benchmarks I ran the day it dropped.
11 min readClaude Opus 4.8 looks like a benchmark bump, but the developer story is better honesty, dynamic workflows, and effort controls that make long-running agent work easier to review.
8 min readComplete pricing breakdown for every major AI coding tool. Claude Code, Cursor, Copilot, Windsurf, Codex, Augment, and more. Free tiers, pro plans, hidden costs, and what you actually get for your money.
12 min readTechnical content at the intersection of AI and development. Building with AI agents, Claude Code, and modern dev tools - then showing you exactly how it works.
Unified API for 200+ models. One API key, one billing dashboard. OpenAI, Anthropic, Google, Meta, Mistral, and more. Aut...
View ToolMeta's open-source model family. Llama 4 available in Scout (17B active) and Maverick (17B active, 128 experts). Free to...
View ToolApple's array framework for machine learning on Apple Silicon. Native Metal support, unified memory, first-class LLM inf...
View ToolThe React meta-framework. App Router, Server Components, Server Actions, file-based routing, and first-class deployment...
View ToolBeat the August 2026 Assistants API sunset. Paste old code, get Responses API.
View AppUnlock pro skills and share private collections with your team.
View AppPro hooks for Claude Code. Private bundles, team sync, one-click install.
View AppInstall Ollama and LM Studio, pull your first model, and run AI locally for coding, chat, and automation - with zero cloud dependency.
Getting StartedInstall the dd CLI and scaffold your first AI-powered app in under a minute.
Getting StartedRun Bash commands with Ctrl+B and retrieve output by task ID.
Claude Code
Getting Started with Code Llama 70B - Meta's Latest Release In this video, we explore the recently released Code Llama 70B from Meta that outperforms many other models across numerous benchmarks.I...

Links: https://ai.meta.com/blog/code-llama-large-language-model-coding/ https://labs.perplexity.ai/ FOLLOW ME → Website: https://dub.sh/dev-digest → X/Twitter: https://dub.sh/dd-x →...

In this video I show you the new multimodal model by Meta AI that allows you to input speech or text and get a host of different outputs from speech-to-speech translation to speech-to-text...

GPT-5.5 and 5.5 Pro hit the API on April 24. Here is what changes for builders: pricing, agentic tasks, tool-use, and th...

Claude Opus 4.8 looks like a benchmark bump, but the developer story is better honesty, dynamic workflows, and effort co...

Complete pricing breakdown for every major AI coding tool. Claude Code, Cursor, Copilot, Windsurf, Codex, Augment, and m...

Meta's first paid API model arrives with $1.25/M input tokens, 1M context window, and strong tool-use benchmarks. HN deb...

Standing up a fleet of Fable 5 agents is the easy part. This is the operations layer - data retention rules, refusal-rat...

The orchestrator is the most important model choice in an agent fleet. A fair head-to-head between Fable 5 and Opus 4.8...

New tutorials, open-source projects, and deep dives on coding agents - delivered weekly.