List Executing Jobs

April 6, 2026

Table of contents

  1. Request Headers
  2. Responses
  3. Model
  4. Examples
  5. Try It

List all currently executing jobs for the authenticated user. Returns jobs that are in created or processing state.

https://api.useapi.net/v1/luma/jobs

Request Headers

Authorization: Bearer {API token}

Responses

  • 200 OK

    Returns the list of executing jobs.

    {
      "executing": 2,
      "jobs": [
        {
          "jobid": "j0326140530123456789v-u12345-email:[email protected]:a1b2c3d4-e5f6-7890-abcd-ef1234567890-bot:luma",
          "type": "video",
          "account": "[email protected]",
          "model": "ray-v3-flash",
          "created": "2026-03-26T14:05:30.123Z"
        },
        {
          "jobid": "j0326140730987654321i-u12345-email:[email protected]:b2c3d4e5-f6a7-8901-bcde-f23456789012-bot:luma",
          "type": "image",
          "account": "[email protected]",
          "model": "photon-v2",
          "created": "2026-03-26T14:07:30.456Z"
        }
      ]
    }
    
    • executing - Total number of currently executing jobs.
    • jobs - Array of executing job summaries.
      • jobid - Unique job identifier.
      • type - Job type (video or image).
      • account - Account email used for the job.
      • model - Model used for the job.
      • created - ISO 8601 timestamp of job creation.
  • 401 Unauthorized

    Invalid API token.

    {
      "error": "Unauthorized"
    }
    

Model

{
  executing: number                // Total executing job count
  jobs: Array<{
    jobid: string                  // Unique job identifier
    type: 'video' | 'image'       // Job type
    account: string                // Account email
    model: string                  // Model name
    created: string                // ISO 8601 timestamp
    replyUrl?: 'configured'        // Present if webhook was set
  }>
  error?: string                   // Error message
}

Examples

  • curl "https://api.useapi.net/v1/luma/jobs" \
      -H "Authorization: Bearer YOUR_API_TOKEN"
    
  • const token = 'YOUR_API_TOKEN'
    
    const response = await fetch('https://api.useapi.net/v1/luma/jobs', {
      headers: {
        'Authorization': `Bearer ${token}`
      }
    })
    
    const result = await response.json()
    console.log(`Executing: ${result.executing} jobs`)
    result.jobs.forEach(job => {
      console.log(`  ${job.jobid} (${job.type}, ${job.model})`)
    })
    
  • import requests
    
    token = 'YOUR_API_TOKEN'
    
    response = requests.get(
        'https://api.useapi.net/v1/luma/jobs',
        headers={'Authorization': f'Bearer {token}'}
    )
    
    result = response.json()
    print(f"Executing: {result['executing']} jobs")
    for job in result['jobs']:
        print(f"  {job['jobid']} ({job['type']}, {job['model']})")
    

Try It