Muse Glimmer 30B API

meta/muse-glimmer-30b
Muse Glimmer 30B is Meta's multimodal chat model with a 131K-token context window, combining vision, reasoning and tool use.
Context
131K tokens
Input
$0.48139 / 1M tokens
Output
$2.0631 / 1M tokens
Released
Aug 10, 2026

How to use Muse Glimmer 30B API

Install any OpenAI-compatible SDK, point it at api.aimlapi.com/v1, and set the model to meta/muse-glimmer-30b.
import requests

r = requests.post(
    "https://api.aimlapi.com/v1/chat/completions",
    headers={"Authorization": "Bearer " + AIMLAPI_KEY},
    json={
      "model": "meta/muse-glimmer-30b",
      "messages": [
        {
          "role": "user",
          "content": "Hello!"
        }
      ]
    },
)
print(r.json())
const r = await fetch("https://api.aimlapi.com/v1/chat/completions", {
  method: "POST",
  headers: {
    Authorization: `Bearer ${process.env.AIMLAPI_KEY}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    "model": "meta/muse-glimmer-30b",
    "messages": [
      {
        "role": "user",
        "content": "Hello!"
      }
    ]
  }),
});
console.log(await r.json());
curl -X POST https://api.aimlapi.com/v1/chat/completions \
  -H "Authorization: Bearer $AIMLAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"meta/muse-glimmer-30b","messages":[{"role":"user","content":"Hello!"}]}'

OpenAI-compatible — swap the base URL and it works with your existing SDK.

Muse Glimmer 30B API Pricing

TypePrice
Input
$0.48139 / 1M tokens
Output
$2.0631 / 1M tokens
Cached input
$0.055016 / 1M tokens

Muse Glimmer 30B vs other models

ModelInputOutputContextBest for
$0.48139 / 1M tokens
$2.0631 / 1M tokens
131K tokens
Multimodal reasoning and tool use
$6.5 / 1M tokens
$32.5 / 1M tokens
1M tokens
Complex agentic coding and enterprise workflows
$1.95 / 1M tokens
$9.75 / 1M tokens
1.05M tokens
Reasoning + agents
$2.0631 / 1M tokens
$12.3786 / 1M tokens
400K tokens
Reasoning + agents
$3.9 / 1M tokens
$19.5 / 1M tokens
1M tokens
Long-context, multimodal & agentic workflows

Frequently asked questions

Muse Glimmer 30B has a 131,072 tokens context window.

Muse Glimmer 30B takes image, text as input and returns text.

Use meta/muse-glimmer-30b as the model id. Requests go to https://api.aimlapi.com/v1/chat/completions.

Muse Glimmer 30B became available on August 10, 2026.

Muse Glimmer 30B is priced at input $0.48139 / 1M tokens, output $2.0631 / 1M tokens, cached input $0.055016 / 1M tokens.

Yes, Muse Glimmer 30B can stream responses as they are generated.

Yes, Muse Glimmer 30B accepts image input alongside text.

Muse Glimmer 30B was built by Meta.

Yes, it supports function calling with parallel tool calls, and includes a reasoning feature.

Yes, it supports structured outputs as one of its listed features.

Start building with Muse Glimmer 30B

Get API Key
1000+ models, one API.