Muse Spark 1.3 API
muse-spark-1.3
Muse Spark 1.3 is a multimodal reasoning model from Meta for long-running agentic, multi-agent, and coding workflows. It improves long-horizon agent collaboration, instruction following, and coding efficiency relative to Muse Spark 1.2.
Muse Spark 1.3 access facts
Model ID: muse-spark-1.3 · Vendor: Meta · Pay-as-you-go
CallAI pricing
Crypto OKSpecs & upstream
SDK quickstart
OpenAI-compatiblefrom openai import OpenAI
client = OpenAI(
api_key="sk-live-your-callai-key",
base_url="https://api.callaiapi.com/v1"
)
response = client.chat.completions.create(
model="muse-spark-1.3",
messages=[
{"role": "system", "content": "You are a helpful coding assistant."},
{"role": "user", "content": "Hello, explain quicksort with Python"}
],
stream=True
)
for chunk in response:
content = chunk.choices[0].delta.content
if content:
print(content, end="", flush=True)import OpenAI from 'openai';
const openai = new OpenAI({
apiKey: process.env.CALLAI_API_KEY,
baseURL: 'https://api.callaiapi.com/v1',
});
const response = await openai.chat.completions.create({
model: 'muse-spark-1.3',
messages: [{ role: 'user', content: 'Hello!' }],
stream: true,
});
for await (const chunk of response) {
process.stdout.write(chunk.choices[0]?.delta?.content || '');
}FAQ — Muse Spark 1.3
How do I call Muse Spark 1.3 (muse-spark-1.3)?
Use the official OpenAI SDK with base_url https://api.callaiapi.com/v1, your CallAI API key, and model "muse-spark-1.3".
What does Muse Spark 1.3 cost?
Pay-as-you-go: input $1.38/1M tokens, output $4.68/1M tokens. Fund with USDT — no credit card required.
Can I use Muse Spark 1.3 in Cursor or Windsurf?
Yes. Set OpenAI Base URL to https://api.callaiapi.com/v1 and add model "muse-spark-1.3" in Settings → Models.
Can I pay without a credit card?
Yes. Top up with USDT-TRC20 from $1. Balance never expires and works for Muse Spark 1.3 and other CallAI services.