- Introduction
- System Design
- Get Started
- My Account
- API Documentation
- Generate ImagePOST
- Get ProgressGET
- UpscalePOST
- VariationPOST
- ZoomPOST
- PanPOST
- RerollPOST
- Make SquarePOST
- Cancel JobPOST
- InpaintingPOST
- Image to Text (describe)POST
- Image to ImagePOST
- Face SwapPOST
- BlendPOST
- HistoryGET
- Generate Image BoostPOST
- Button BoostPOST
- Prompt CheckPOST
- Account InfoGET
- Generate Image - Flux ModelPOST
- Remove BackgroundPOST
- FLUX API Documentation
- DIY Plan Endpoints
- Guide
- HowTos
- Web App
Get Progress
GET
https://api.imaginepro.ai/api/v1/message/fetch/{messageId}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
messageId
string
required
Example:
d15c1541-229a-442b-9873-d3494dede12a
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.imaginepro.ai/api/v1/message/fetch/d15c1541-229a-442b-9873-d3494dede12a'
Responses
🟢200Success
application/json
Body
success
string
required
prompt
string
required
createdAt
string
required
updatedAt
string
required
originalUrl
string
optional
uri
string
optional
progress
string
optional
status
string
optional
error
string
optional
buttons
array[string]
optional
originalMessageId
string
optional
ref
string
optional
Example
{
"messageId": "your-button-message-id",
"prompt": "A little cat running on the grass",
"originalUrl": "https://cdn.discordapp.com/attachments/123/123/123.png",
"uri": "https://cdn.imaginepro.ai/storage/123/123/123.png",
"progress": 100,
"status": "DONE",
"createdAt": "2023-08-01T14:03:01.817Z",
"updatedAt": "2023-08-01T14:03:01.817Z",
"buttons": [
"U1",
"U2",
"U3",
"U4",
"🔄",
"V1",
"V2",
"V3",
"V4",
"Zoom Out 2x",
"Zoom Out 1.5x",
"Vary (Strong)",
"Vary (Subtle)"
],
"originatingMessageId": "your-message-id",
"ref": ""
}
Modified at 2024-11-24 04:26:55