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.
Test this model instantly in the Console Playground โ no code required
Copy usage instructions for Claude, ChatGPT, or other AI
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"
}
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
prompt | string | Yes | - | Text prompt describing the image to generate. |
n | integer | No | 1 | Number of images to generate (1-10). Billed per image. |
size | string | No | - | 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_format | string | No | webp | Output image format. webppngjpeg |
Common parameters used when calling POST /v1/predictions.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
model | string | Yes | - | Model identifier |
input | object | Yes | - | Object containing the model-specific parameters from the table above |
output_folder | string | No | - | Folder path for output files (max 256 chars, '..' not allowed) |
webhook_url | string | No | - | Webhook URL to call on completion |
is_public | boolean | No | false | If true, output files are also available via permanent public URLs |
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"
}
}'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"
}
}'POST /v1/predictions