curl --request POST \
--url https://utoken.yoostudio.ai/v1/images/edits \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "<string>",
"input": {
"messages": [
{
"role": "<string>",
"content": [
{
"image": "<string>",
"text": "<string>"
}
]
}
]
},
"parameters": {
"n": 123,
"negative_prompt": "<string>",
"prompt_extend": true,
"watermark": true,
"size": "<string>"
}
}
'