- 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 Linked Account List
GET
https://api.imaginepro.ai/api/v1/discord/tokens
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
page
string
optional
size
string
optional
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/discord/tokens?page&size'
Responses
🟢200Success
application/json
Body
array of:
id
string
required
status
string
required
isActive
boolean
required
Example
[
{
"id": 1900,
"token": "XXX",
"channelId": "116975856xxx",
"serverId": "116975856xxx",
"isActive": true,
"status": "FAST",
"info": {
"jobMode": "",
"runningJobs": "None",
"relaxedUsage": "999 images",
"subscription": "Basic (Active monthly, renews next on <t:2123>)",
"lifetimeUsage": "999 images",
"queuedJobsFast": "0",
"visibilityMode": "Public",
"queuedJobsRelax": "0",
"fastTimeRemaining": "199.00/200.0 minutes (99.50%)"
},
"concurrency": 2
}
]