- 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
Excute MJ commad
POST
https://api.imaginepro.ai/api/v1/nova/commands
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
cmd
enum<string> | enum<null>
optional
Allowed values:
relaxfastturboinfo
tokenId
integer
required
ref
string
optional
webhookOverride
string
optional
Example
{
"cmd": "info",
"tokenId": 12345
}
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 POST 'https://api.imaginepro.ai/api/v1/nova/commands' \
--header 'Content-Type: application/json' \
--data-raw '{
"cmd": "info",
"tokenId": 12345
}'
Responses
🟢200Success
application/json
Body
success
boolean
required
messageId
string
required
createdAt
string
required
error
string
optional
Example
{
"success": true,
"messageId": "d15c1541-229a-442b-9873-d3494dede12a",
"createdAt": "2023-08-01T14:03:01.817Z"
}
Modified at 2025-01-13 10:57:50