Get list of currently executing Midjourney jobs
December 2023
Table of contents
https://api.useapi.net/v2/jobs
Request Headers
Authorization: Bearer {API token}
API tokenis required, see Setup useapi.net for details.
Responses
-
[ "<jobid>", "<jobid>", "<jobid>" ] -
{ "error": "Unauthorized", "code": 401 } -
{ "error": "Account has no subscription or subscription expired", "code": 402 }
Model
// TypeScript
string[]
Examples
-
curl https://api.useapi.net/v2/jobs \ -H "Accept: application/json" \ -H "Authorization: Bearer …" -
const token = "API token"; const apiUrl = `https://api.useapi.net/v2/jobs`; const response = await fetch(apiUrl, { headers: { "Authorization": `Bearer ${token}`, }, }); const result = await response.json(); console.log("response", {response, result}); -
import requests token = "API token" apiUrl = f"https://api.useapi.net/v2/jobs" headers = { "Content-Type": "application/json", "Authorization" : f"Bearer {token}" } response = requests.get(apiUrl, headers=headers) print(response, response.json())