PixVerse Platform Docs
  1. API Reference
PixVerse Platform Docs
  • Learn about PixVerse Platform
    • Introduce to PixVerse Platform
    • Quick Start
  • Getting started
    • How does the API work?
    • How to get API key?
    • How to check account balance?
    • How to subscribe API plans?
    • How to use Text-to-video
    • How to use Image-to-video
    • How to use Effects?
    • How to use Transition(First-last frame Feature)
    • How to use Speech(Lip sync)?
    • Lip sync TTS speaker list
    • How to use Extend?
    • How to use Sound effects?
    • How to use Fusion(Reference to video)?
    • How to get video generation status?
  • API Reference
    • API Parameter Description
    • Get user credit balance
      GET
    • Upload Image
      POST
    • Text-to-Video generation
      POST
    • Image-to-Video generation
      POST
    • Transition(First-last frame) generation
      POST
    • Upload Video&audio
      POST
    • Speech(Lipsync) generation
      POST
    • Get Speech(Lipsync) tts list
      GET
    • Extend generation
      POST
    • Sound effect generation
      POST
    • Fusion(reference to video) generation
      POST
    • Get Video Generation Status
      GET
  • Trouble Shooting
    • Common errors and Solutions
    • Error codes
    • FAQ
  • Resources
    • Model & Pricing
    • Rate limit
    • Support
    • Change Logs
    • Term of Service
    • Privacy policy
  • PixVerse Tools
    • PixVerse MCP
  1. API Reference

Get Video Generation Status

GET
/openapi/v2/video/result/{id}
1: Generation successful; 5: Generating; 7: Contents moderation failed; 8: Generation failed;
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://app-api.pixverse.ai/openapi/v2/video/result/' \
--header 'API-KEY: your-api-key' \
--header 'Ai-trace-id: {{$string.uuid}}'
Response Response Example
{
    "ErrCode": 0,
    "ErrMsg": "string",
    "Resp": {
        "create_time": "string",
        "id": 0,
        "modify_time": "string",
        "negative_prompt": "string",
        "outputHeight": 0,
        "outputWidth": 0,
        "prompt": "string",
        "resolution_ratio": 0,
        "seed": 0,
        "size": 0,
        "status": 0,
        "style": "string",
        "url": "string"
    }
}

Request

Path Params

Header Params

Responses

🟢200OK
application/json
Success
Body

Previous
Fusion(reference to video) generation
Next
Common errors and Solutions