- 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 Message Trace
GET
https://api.imaginepro.ai/api/v1/message/trace/{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/trace/d15c1541-229a-442b-9873-d3494dede12a'
Responses
🟢200Success
application/json
Body
messageId
string
required
tokenId
string
required
discordChannelId
string
optional
tokenStatus
string
optional
tokenInfo
object
optional
Example
{
"messageId": "xxxxxx-4517-xxxx-xxxx-xxxxxxxxx",
"tokenId": 111,
"discordChannelId": "125000000000000",
"tokenStatus": "FAST",
"tokenInfo": {
"jobMode": "Fast",
"message": "",
"runningJobs": "None",
"relaxedUsage": "1000 images",
"subscription": "Standard (Active monthly, renews next on <t:xxx>)",
"lifetimeUsage": "2000 images",
"queuedJobsFast": "0",
"visibilityMode": "Public",
"queuedJobsRelax": "0",
"fastTimeRemaining": "15.00/15.0 hours (100.00%)"
}
}