How to make ImaginePro API request in Postman
Exploring ImaginePro API for Seamless Image Creation
of APIs to bring your creative visions to life. In this blog post, we're
diving into the fascinating world of ImaginePro API, your gateway to unlocking
the full potential of Midjourney's AI image generation capabilities.
Getting Started with ImaginePro API
Making Requests with ImaginePro API
https://api.imaginepro.ai
.Exploring the Imagine Command
webhook
parameter in your request body, the response will be delivered to your webhook URL. Send the request and wait for the response. Once it arrives, you'll find the generated image messageId
and status. Don't hesitate to experiment with different prompts and parameters to create unique and imaginative AI-generated art.Content-Type
header to application/json
(by setting the request body to raw
and JSON
in Postman).Authorization
header.{
"prompt": "A little cat running on the grass"
}
Tracking AI Image Generation Progress
GET
request to the following API endpoint:https://api.imaginepro.ai/api/v1/midjourney/message/<messageId>
<messageId>
with the actual messageId from your previous AI image generation job, for example, "4df975a7-d7fd-4a59-975d-83fcfc29891b".prompt
and 'timestamps' data of your job.Upscaling Images with ImaginePro API
messageId
from the previous response and include 'U1' in the button
field.{
"messageId": "4df975a7-d7fd-4a59-975d-83fcfc29891b",
"button": "U1"
}
imagine
request, you can use the progress
endpoint to tracking the details of this submitted job.In Conclusion
Modified at 2024-09-18 06:36:52