{"slug": "meta-model-api-is-live-plug-muse-spark-into-your-sdk-now", "title": "Meta Model API Is Live: Plug Muse Spark Into Your SDK Now", "summary": "Meta launched its paid AI API on July 9, offering the Muse Spark 1.1 model with a 1 million token context window and compatibility with OpenAI and Anthropic SDKs. The API costs $1.25 per million input tokens and $4.25 per million output tokens, with free $20 credits for new accounts. Muse Spark 1.1 excels in agentic tasks like tool use but trails in coding benchmarks, and the API is US-only in public preview with no SLA.", "body_md": "Meta’s paid AI API went live on July 9. If you’re already running the OpenAI SDK or the Anthropic SDK, you can switch to Muse Spark 1.1 by changing one URL and one API key. That’s it. No rewriting. No new SDK to learn. Meta just became a third frontier provider option, and the experiment costs you nothing — every new account gets $20 in free credits.\n\n## What Launched\n\nMeta Superintelligence Labs shipped [Muse Spark 1.1](https://ai.meta.com/blog/introducing-muse-spark-meta-model-api/) on the new Meta Model API in public preview for US developers. The model is a multimodal reasoning system designed for agentic tasks — parallel tool calling, computer use, multi-agent orchestration. It carries a 1 million token context window and supports images, video, and documents in a single call.\n\nThe real news is not the model. It is the API surface: Meta Model API speaks both the OpenAI Chat Completions format and the Anthropic Messages format out of the box. This is not a gimmick. It means your existing agent code routes to Muse Spark by swapping a base URL and a key.\n\n## The Migration Is One Line\n\nHere is what switching from OpenAI to Meta Model API looks like in Python:\n\n``` python\nfrom openai import OpenAI\nimport os\n\nclient = OpenAI(\n    base_url=\"https://api.meta.ai/v1\",\n    api_key=os.environ[\"MODEL_API_KEY\"],  # not OPENAI_API_KEY\n)\n\nresponse = client.chat.completions.create(\n    model=\"muse-spark-1.1\",\n    messages=[{\"role\": \"user\", \"content\": \"Summarize this document.\"}],\n)\nprint(response.choices[0].message.content)\n```\n\nOne caveat: the OpenAI SDK does not auto-read `MODEL_API_KEY`\n\n, so you need to pass it explicitly. The Anthropic SDK migration is equally straightforward — the Meta Model API accepts the Messages format without modification.\n\n## Pricing in Context\n\nMuse Spark 1.1 runs at **$1.25 per million input tokens and $4.25 per million output tokens**. Cached input drops to $0.15 — which is aggressive at any comparison point. That puts it well below Claude Fable 5 ($10/$50), below GPT-5.6 Sol ($5/$30), and roughly comparable to GPT-5.6 Luna on input with lower output costs. Check the full [Meta Model API pricing page](https://dev.meta.ai/docs/getting-started/pricing-rate-limits) for current rates.\n\nWeb search grounding is available as a built-in tool and costs $2.50 per 1,000 queries on top of token costs — a fair price for real-time, cited answers without a separate RAG pipeline.\n\n## Where Muse Spark 1.1 Wins\n\nThe model was built for agentic pipelines, not raw code generation, and the benchmarks reflect that. On MCP Atlas, a tool-use benchmark, Muse Spark 1.1 scores 88.1 — ahead of Claude Opus 4.8 and GPT-5.5, which both land in the high 70s to low 80s. If you’re building a multi-agent system where the model’s job is to coordinate tools, call APIs, and orchestrate subagents, this is a credible option at that price point.\n\nThe built-in features that matter most for agent builders: parallel tool calling, structured output, a Files API, prompt caching, and native MCP server integration. According to the [DataCamp developer breakdown](https://www.datacamp.com/blog/muse-spark-1-1), the model zero-shot generalizes to new MCP servers and custom skills without fine-tuning.\n\n## Where It Trails\n\nDo not reach for Muse Spark 1.1 for pure coding tasks. On SWE-Bench Pro it scores 61.5, trailing Claude Opus 4.8 at 69.2. On DeepSWE 1.1, a long-horizon agentic coding benchmark, it scores 53.3 against GPT-5.5’s 67.0.\n\nThere is also a transparency gap at launch. Meta released [limited independent benchmark data](https://benchlm.ai/models/muse-spark-1-1) and no system card. The API is US-only in public preview and carries no published SLA. For production workloads where uptime commitments matter, this is worth tracking.\n\n## How to Think About This for Your Stack\n\nThe practical routing strategy is straightforward: Muse Spark 1.1 earns a place in the agentic orchestration layer — the parts of your system that call tools, coordinate agents, and handle high-volume summarization. For critical reasoning tasks, complex code generation, and anything where accuracy is paramount, stay with Claude or GPT-5.6.\n\nThe $20 in free credits removes any reason not to test it today. Bloomberg noted this is the [first time Meta has charged for AI access](https://www.bloomberg.com/news/articles/2026-07-09/meta-starts-charging-for-ai-with-muse-spark-1-1-agentic-model) — the company has always defaulted to open weights or free APIs. That strategic shift means they’re serious about sustaining this product, which matters more than any benchmark score.", "url": "https://wpnews.pro/news/meta-model-api-is-live-plug-muse-spark-into-your-sdk-now", "canonical_source": "https://byteiota.com/meta-model-api-muse-spark-1-1-developer-guide/", "published_at": "2026-07-10 04:11:56+00:00", "updated_at": "2026-07-10 04:15:32.317737+00:00", "lang": "en", "topics": ["artificial-intelligence", "large-language-models", "ai-products", "ai-infrastructure", "ai-tools"], "entities": ["Meta", "Muse Spark 1.1", "OpenAI", "Anthropic", "Claude Fable 5", "GPT-5.6 Sol", "GPT-5.6 Luna", "Claude Opus 4.8"], "alternates": {"html": "https://wpnews.pro/news/meta-model-api-is-live-plug-muse-spark-into-your-sdk-now", "markdown": "https://wpnews.pro/news/meta-model-api-is-live-plug-muse-spark-into-your-sdk-now.md", "text": "https://wpnews.pro/news/meta-model-api-is-live-plug-muse-spark-into-your-sdk-now.txt", "jsonld": "https://wpnews.pro/news/meta-model-api-is-live-plug-muse-spark-into-your-sdk-now.jsonld"}}