curl --request POST \
--url https://api.moda.app/v1/media/edit-image \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"prompt": "<string>",
"model": "<string>",
"source_images": [
"<string>"
],
"aspect_ratio": "<string>",
"num_images": 1,
"resolution": "<string>",
"width": 1,
"height": 1,
"reference_images": [
"<string>"
],
"model_params": {},
"idempotency_key": "<string>"
}
'import requests
url = "https://api.moda.app/v1/media/edit-image"
payload = {
"prompt": "<string>",
"model": "<string>",
"source_images": ["<string>"],
"aspect_ratio": "<string>",
"num_images": 1,
"resolution": "<string>",
"width": 1,
"height": 1,
"reference_images": ["<string>"],
"model_params": {},
"idempotency_key": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
prompt: '<string>',
model: '<string>',
source_images: ['<string>'],
aspect_ratio: '<string>',
num_images: 1,
resolution: '<string>',
width: 1,
height: 1,
reference_images: ['<string>'],
model_params: {},
idempotency_key: '<string>'
})
};
fetch('https://api.moda.app/v1/media/edit-image', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.moda.app/v1/media/edit-image",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'prompt' => '<string>',
'model' => '<string>',
'source_images' => [
'<string>'
],
'aspect_ratio' => '<string>',
'num_images' => 1,
'resolution' => '<string>',
'width' => 1,
'height' => 1,
'reference_images' => [
'<string>'
],
'model_params' => [
],
'idempotency_key' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.moda.app/v1/media/edit-image"
payload := strings.NewReader("{\n \"prompt\": \"<string>\",\n \"model\": \"<string>\",\n \"source_images\": [\n \"<string>\"\n ],\n \"aspect_ratio\": \"<string>\",\n \"num_images\": 1,\n \"resolution\": \"<string>\",\n \"width\": 1,\n \"height\": 1,\n \"reference_images\": [\n \"<string>\"\n ],\n \"model_params\": {},\n \"idempotency_key\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.moda.app/v1/media/edit-image")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"prompt\": \"<string>\",\n \"model\": \"<string>\",\n \"source_images\": [\n \"<string>\"\n ],\n \"aspect_ratio\": \"<string>\",\n \"num_images\": 1,\n \"resolution\": \"<string>\",\n \"width\": 1,\n \"height\": 1,\n \"reference_images\": [\n \"<string>\"\n ],\n \"model_params\": {},\n \"idempotency_key\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.moda.app/v1/media/edit-image")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"prompt\": \"<string>\",\n \"model\": \"<string>\",\n \"source_images\": [\n \"<string>\"\n ],\n \"aspect_ratio\": \"<string>\",\n \"num_images\": 1,\n \"resolution\": \"<string>\",\n \"width\": 1,\n \"height\": 1,\n \"reference_images\": [\n \"<string>\"\n ],\n \"model_params\": {},\n \"idempotency_key\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{}{
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}Edit Image
Generative image edit — the same primitive with required source_images (metered).
curl --request POST \
--url https://api.moda.app/v1/media/edit-image \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"prompt": "<string>",
"model": "<string>",
"source_images": [
"<string>"
],
"aspect_ratio": "<string>",
"num_images": 1,
"resolution": "<string>",
"width": 1,
"height": 1,
"reference_images": [
"<string>"
],
"model_params": {},
"idempotency_key": "<string>"
}
'import requests
url = "https://api.moda.app/v1/media/edit-image"
payload = {
"prompt": "<string>",
"model": "<string>",
"source_images": ["<string>"],
"aspect_ratio": "<string>",
"num_images": 1,
"resolution": "<string>",
"width": 1,
"height": 1,
"reference_images": ["<string>"],
"model_params": {},
"idempotency_key": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
prompt: '<string>',
model: '<string>',
source_images: ['<string>'],
aspect_ratio: '<string>',
num_images: 1,
resolution: '<string>',
width: 1,
height: 1,
reference_images: ['<string>'],
model_params: {},
idempotency_key: '<string>'
})
};
fetch('https://api.moda.app/v1/media/edit-image', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.moda.app/v1/media/edit-image",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'prompt' => '<string>',
'model' => '<string>',
'source_images' => [
'<string>'
],
'aspect_ratio' => '<string>',
'num_images' => 1,
'resolution' => '<string>',
'width' => 1,
'height' => 1,
'reference_images' => [
'<string>'
],
'model_params' => [
],
'idempotency_key' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.moda.app/v1/media/edit-image"
payload := strings.NewReader("{\n \"prompt\": \"<string>\",\n \"model\": \"<string>\",\n \"source_images\": [\n \"<string>\"\n ],\n \"aspect_ratio\": \"<string>\",\n \"num_images\": 1,\n \"resolution\": \"<string>\",\n \"width\": 1,\n \"height\": 1,\n \"reference_images\": [\n \"<string>\"\n ],\n \"model_params\": {},\n \"idempotency_key\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.moda.app/v1/media/edit-image")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"prompt\": \"<string>\",\n \"model\": \"<string>\",\n \"source_images\": [\n \"<string>\"\n ],\n \"aspect_ratio\": \"<string>\",\n \"num_images\": 1,\n \"resolution\": \"<string>\",\n \"width\": 1,\n \"height\": 1,\n \"reference_images\": [\n \"<string>\"\n ],\n \"model_params\": {},\n \"idempotency_key\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.moda.app/v1/media/edit-image")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"prompt\": \"<string>\",\n \"model\": \"<string>\",\n \"source_images\": [\n \"<string>\"\n ],\n \"aspect_ratio\": \"<string>\",\n \"num_images\": 1,\n \"resolution\": \"<string>\",\n \"width\": 1,\n \"height\": 1,\n \"reference_images\": [\n \"<string>\"\n ],\n \"model_params\": {},\n \"idempotency_key\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{}{
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}Authorizations
API key from Settings > Developer > REST API
Headers
Calendar-dated API version pin. New integrations should pin 2026-05-01 to opt into the newest response shapes. For back-compat the server also accepts requests with no header and resolves them to the current default (today: 2026-04-12); that default advances on each sunset date. Any unsupported value returns 400 unsupported_version.
2026-04-12, 2026-05-01 "2026-05-01"
Body
Sent to the selected model VERBATIM.
1Concrete registry model id (no 'auto'); see GET /v1/media/models.
The image(s) to edit — required on this verb: file_ ids or http(s) URLs.
11 <= x <= 4x > 0x > 0Style/subject/composition references: file_ ids or http(s) URLs.
A retried call with the same key replays the stored response (replayed:true) instead of paying for a second provider render.
200Response
Successful Response
The response is of type Response Mediaeditimage · object.