Technical Specifications of mj-fast-edits
| Specification | Details |
|---|---|
| Model ID | mj-fast-edits |
| Provider family | Midjourney-based image editing model |
| Primary modality | Image-to-image editing with text-guided modifications |
| Input type | Source image plus edit prompt/instructions |
| Output type | Edited AI-generated image variants |
| Access pattern | API-based, typically asynchronous task submission and result retrieval |
| Commercial use | Supported on CometAPI |
| Pricing on CometAPI | $0.056 per request |
| Official reference pricing shown by CometAPI | $0.07 per request |
| Positioning | Fast image edit workflow for users who want Midjourney-style modifications rather than full text-to-image generation |
What is mj-fast-edits?
mj-fast-edits is CometAPI’s platform identifier for a Midjourney-style image editing model focused on fast prompt-driven edits to an existing image. Based on CometAPI’s model page, it is positioned as a commercial-use image editing API with per-request pricing, rather than a token-metered text model.
Online documentation and ecosystem references around Midjourney editing indicate that this class of model is designed for workflows where you upload or reference an image, describe the desired change in natural language, and receive edited image outputs as generated variants. Midjourney’s own editor supports operations such as modifying regions, reworking composition, and combining prompt changes with editing actions, which aligns with how “fast edits” offerings are typically described by API aggregators.
In practice, mj-fast-edits is best understood as an API option for developers who want to build image retouching, creative transformation, marketing asset iteration, or concept refinement features into their products while using CometAPI’s unified access layer. This interpretation is supported by CometAPI’s model listing and by third-party Midjourney edit API patterns that use asynchronous submission and polling for generated results.
Main features of mj-fast-edits
- Fast image editing workflow:
mj-fast-editsis positioned for quick transformation of existing images, making it suitable when users want edits or variations without starting from scratch. - Prompt-guided modifications: The surrounding Midjourney editing ecosystem uses natural-language instructions to describe what should change in the input image, enabling intuitive creative control.
- Image-to-image generation: Instead of pure text generation, this model family operates on a supplied image and returns edited outputs, which is useful for redesign, enhancement, or style transformation scenarios.
- Asynchronous API compatibility: Midjourney edit APIs commonly run as background jobs where you submit a task and later query status/results, which is the expected integration pattern for this model category.
- Commercial-use readiness: CometAPI marks
mj-fast-editsas available for commercial use, making it relevant for production applications and customer-facing products. - Aggregator-based access: Through CometAPI, developers can access
mj-fast-editsvia a unified API platform, simplifying billing, authentication, and multi-model integration. - Cost-predictable pricing: CometAPI lists this model with per-request pricing at $0.056, which is simpler to estimate than token-based billing for many image workflows.
How to access and integrate mj-fast-edits
Step 1: Sign Up for API Key
Sign up on CometAPI and generate your API key from the dashboard. Once you have the key, store it securely and use it as the bearer token for all requests. CometAPI provides unified authentication and billing across supported models, including mj-fast-edits.
Step 2: Send Requests to mj-fast-edits API
Send requests to the CometAPI endpoint using mj-fast-edits as the model ID. Include your input image data or image reference together with the text instructions describing the edit you want. Because Midjourney-style editing workflows are commonly asynchronous, your request may return a task or job identifier that you use to check progress later.
curl --request POST \
--url https://api.cometapi.com/v1/images/edits \
--header "Authorization: Bearer YOUR_COMETAPI_KEY" \
--header "Content-Type: application/json" \
--data '{
"model": "mj-fast-edits",
"image": "YOUR_IMAGE_URL_OR_BASE64",
"prompt": "Enhance the lighting, clean the background, and make the subject look more cinematic"
}'
Step 3: Retrieve and Verify Results
After submitting the request, retrieve the generated result using the task ID or response object returned by the API. Verify that the output matches the requested edit, then store or deliver the final image to your application workflow. For production use, add validation, retries, and status polling to handle asynchronous completion reliably.