Retrieve the list of videos and images currently being executed by the API

December 6, 2024 (March 9, 2026)

Table of contents

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

This endpoint retrieves the list of videos and images currently being executed by the API. Each item includes id and type (video or image). If you want to get all videos or images currently being executed including those manually initiated from PixVerse.ai website use GET /videos or GET /images.

https://api.useapi.net/v2/pixverse/scheduler/

Request Headers
Authorization: Bearer {API token}
Content-Type: application/json
Responses
  • 200 OK

    [
        {
            "id": "user:user_id-pixverse:email-video:id1",
            "type": "video",
            "started": "2024-09-25T01:55:16.128Z",
            "elapsed": "03:57",
            "replyUrl": "<optional callback URL>",
            "replyRef": "<optional reference>"
        },
        {
            "id": "user:user_id-pixverse:email-image:id2",
            "type": "image",
            "started": "2024-09-25T01:58:18.555Z",
            "elapsed": "00:35",
            "replyUrl": "<optional callback URL>",
            "replyRef": "<optional reference>"
        }
    ]
    
  • 401 Unauthorized

    {
      "error": "Unauthorized",
      "code": 401
    }
    
Model
{ // TypeScript, all fields are optional
    id: string
    type: 'video' | 'image'
    started: string
    elapsed: string
    replyUrl: string
    replyRef: string
}[]
Examples
  • curl "https://api.useapi.net/v2/pixverse/scheduler/" \
       -H "Accept: application/json" \
       -H "Authorization: Bearer …" 
    
  • const token = "API token";
    const apiUrl = `https://api.useapi.net/v2/pixverse/scheduler/`; 
    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/pixverse/scheduler/"
    headers = {
        "Content-Type": "application/json", 
        "Authorization" : f"Bearer {token}"
    }
    response = requests.get(apiUrl, headers=headers)
    print(response, response.json())
    
Try It