# Muse Image 1.0 Edit > Edit an existing image with Meta's Muse Image model - pass a source image URL and a prompt describing the change. Up to 10 variants per request. - **Provider**: meta-image-edit - **Model ID**: meta/muse-image-1.0/edit - **Category**: image_generation - **Credits**: 24 per request - **Pricing Type**: input_based ## API Endpoint Base URL: https://api.core.today/v1 ### Create Prediction POST /predictions ### Get Status GET /predictions/{job_id} ### Cancel DELETE /predictions/{job_id} ## Authentication Header: `X-API-Key: YOUR_API_KEY` ## Input Parameters - `image` (string, **required**): Source image URL to edit (png/jpeg/webp). - `size` (string, optional): Output aspect ratio as "WxH" (ratio only, native resolution). Omit to keep the source image's ratio. (Options: `1024x1024`, `1792x1024`, `1024x1792`, `1536x1024`, `1024x1536`, `1280x720`, `720x1280`) - `output_format` (string, optional): Output image format. (Default: `webp`; Options: `webp`, `png`, `jpeg`) - `prompt` (string, **required**): Text prompt describing the edit to apply. - `n` (integer, optional): Number of edited variants to generate (1-10). Billed per image. (Default: `1`; Range: min: 1, max: 10) ## Example Request ```json { "model": "meta/muse-image-1.0/edit", "input": { "prompt": "Make it golden hour and add a small red bicycle leaning on the wall", "image": "https://files.core.today/aiapi/6f8aed9a74674cd1/public/SlzMWjEAXHIdNTyTRKe6jV2keHjUXZ2k/0.jpg" } } ``` ## Response Format ```json { "job_id": "abc123", "status": "pending", "provider": "replicate", "model": "black-forest-labs/flux-schnell", "created_at": "2026-01-01T00:00:00Z", "result": null, "error": null } ``` Status values: `pending`, `processing`, `completed`, `failed`, `cancelled` ## Usage Flow 1. POST /predictions with model and input → receive job_id 2. Poll GET /predictions/{job_id} until status is `completed` or `failed` 3. Result contains output URL(s) or data ## Output Type url ## Tags meta, muse, image-editing, image-to-image ## Documentation https://dev.meta.ai/docs/image-generation