GET/v1/info

Account Info

Retrieve information about the Midjourney account linked to your hold. This sends the /info command to Midjourney via Discord and returns the parsed result.

Example Request

cURL
curl https://linkrapi.com/api/v1/info \
  -H "Authorization: Bearer lkr_your_api_key"

Response

200 OK
{
  "status": "SUCCESS",
  "data": {
    "user_id": "123456789012345678",
    "subscription": "Standard",
    "job_mode": "fast",
    "visibility_mode": "public",
    "fast_time_remaining": "2:45:30",
    "lifetime_usage": "1234",
    "fast_usage": "567",
    "turbo_usage": "12",
    "relaxed_usage": "890",
    "queued_jobs_fast": "0",
    "queued_jobs_relax": "0",
    "running_jobs": "0"
  }
}

Response Fields

user_id
string
Your Midjourney user ID.
subscription
string
Current plan (Basic, Standard, Pro, Mega).
job_mode
string
Active mode — fast, relax, or turbo.
visibility_mode
string
Image visibility — public or stealth.
fast_time_remaining
string
Remaining fast generation time (H:MM:SS).
lifetime_usage
string
Total images generated since account creation.
fast_usage
string
Images generated in fast mode this billing period.
turbo_usage
string
Images generated in turbo mode this billing period.
relaxed_usage
string
Images generated in relax mode this billing period.
queued_jobs_fast
string
Number of fast jobs currently queued.
queued_jobs_relax
string
Number of relax jobs currently queued.
running_jobs
string
Number of jobs currently running.

Status Codes

200Account info retrieved successfully.
401Invalid or missing API key.
502Failed to get info — Discord connection issue or Midjourney timeout.
⚠️ Note
This endpoint sends a real /info command to Midjourney via Discord. The response may take 5–15 seconds. Midjourney's /info response is ephemeral in some contexts, so this endpoint may occasionally return a timeout error — simply retry.
💡 Tip
This data is now also displayed automatically on your hold card in the dashboard. The info is cached for 15 minutes, so you don't need to call this endpoint manually unless you need real-time data in your application.