Meta Superintelligence Labs' first model, featuring advanced reasoning, multimodal understanding, and agentic capabilities. Processes voice, text, and image inputs with tool use and multi-agent orchestration. Powers Meta AI across its product ecosystem.
256K tokens
1
available
Cheapest
Meta AI
$30.00/1M tokens
Meta AI
Sorted by total cost (input + output per 1M tokens). Click a row to view provider details.
| Provider | Pricing (per 1M) | Rate Limits | Regions | Health | Latency |
|---|---|---|---|---|---|
In: $5.00Out: $25.00 | 100 RPM / 200K TPM | us-east-1us-west-2 | Healthy | 0ms |
Use this model via Meta AI with an OpenAI-compatible SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.meta.com/v1",
apiKey: process.env.META_API_KEY,
});
const response = await client.chat.completions.create({
model: "muse-spark",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Using Meta AI API • OpenAI-compatible SDK