Get Infinity Image
Get Infinity Image
GET
https://pub-api.mojo.vn/srv/publish/api/art_v5/getImage
Headers
Name
Type
Description
Content-Type*
application/json
Authorization*
Bearer apikey,
API_KEY
Request Body
Name
Type
Description
id*
String
ImageID
{
"success": true,
"data": {
"prompt": "Image Prompt",
"ar": "Image ar",
"style": "Image Style",
"created": "dateTime",
"created_by": "id"
},
"url": "ImageURL"
}
curl --location --request GET 'https://pub-api.mojo.vn/srv/publish/api/art_v5/getImage' --header 'Authorization: Bearer apikey,API_KEY' --header 'Content-Type: application/json' --data '{ "id": "ImageID" }'
ImageID: The ImageID is the ID of the Infinity Art image generated from the Create Infinity Art API.
Get Infinity Image Success If the image generate success get image api will response full image data like this:
{
"success": true,
"data": {
"prompt": "Image Prompt",
"ar": "Image ar",
"style": "Image Style",
"created": "dateTime",
"created_by": "id"
},
"url": "ImageURL"
}
Last updated