Skip to main content
MetaMediumHigh

Muse Image 1.0

Meta's Muse Image model over the Meta developer API - text-to-image with built-in web and image search grounding, up to 10 images per request, webp/png/jpeg output. To edit an existing image use meta/muse-image-1.0/edit.

24 credits
per image
Built-in web and image search grounding at no extra charge
Up to 10 images per request (billed per image)
Aspect ratio control via WxH size presets
webp (default), png or jpeg output
Synchronous API - the result is ready when the job completes

Run it right now

Test this model instantly in the Console Playground โ€” no code required

Sign in to try

Use with AI Assistant

Copy usage instructions for Claude, ChatGPT, or other AI

Quick Start

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "meta/muse-image-1.0",
  "input": {
    "prompt": "A cozy Seoul street cafe at dusk, warm window light, rain-slick pavement, cinematic photo",
    "size": "1792x1024"
  }
}'

Parameters

ParameterTypeRequiredDefaultDescription
promptstringYes-Text prompt describing the image to generate.
nintegerNo1Number of images to generate (1-10). Billed per image.
sizestringNo-Aspect ratio as WxH. Sets the ratio only - the image is rendered at the model's native resolution. Omit to let the model choose.
1024x10241792x10241024x17921536x10241024x15361280x720720x1280
output_formatstringNowebpOutput image format.
webppngjpeg

Common Parameters

Common parameters used when calling POST /v1/predictions.

ParameterTypeRequiredDefaultDescription
modelstringYes-Model identifier
inputobjectYes-Object containing the model-specific parameters from the table above
output_folderstringNo-Folder path for output files (max 256 chars, '..' not allowed)
webhook_urlstringNo-Webhook URL to call on completion
is_publicbooleanNofalseIf true, output files are also available via permanent public URLs

Examples

Text-to-image generation

Generates a wide cinematic image from a text prompt.

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "meta/muse-image-1.0",
  "input": {
    "prompt": "A cozy Seoul street cafe at dusk, warm window light, rain-slick pavement, cinematic photo",
    "size": "1792x1024"
  }
}'

Batch variations

Generate 4 png variations of the same prompt in one request.

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "meta/muse-image-1.0",
  "input": {
    "prompt": "A minimalist logo concept for a coffee brand, flat design",
    "n": 4,
    "size": "1024x1024",
    "output_format": "png"
  }
}'

Tips & Best Practices

1To edit an existing image, use meta/muse-image-1.0/edit - this model has no image input
2The size preset fixes the aspect ratio, not the pixel dimensions
3Prompts that reference real products or places benefit from the built-in search grounding
4The default output is webp; choose png when you need lossless output

Use Cases

Product and lifestyle imagery grounded in real-world references
Marketing visuals across landscape, portrait and square ratios
Batch concept exploration with the n parameter