Pruna P Video Serverless API
Generate high-quality AI videos from text prompts in seconds with Pruna P Video — fast, affordable, and studio-ready.
1import requests
2import json
3
4url = "https://api.segmind.com/v1/p-video"
5headers = {
6 "x-api-key": "YOUR_API_KEY",
7 "Content-Type": "application/json"
8}
9
10data = {
11 "prompt": "A cinematic aerial shot of a coastal city at golden hour, with sunlight reflecting off glass skyscrapers and gentle waves lapping against a sandy shore, birds flying across the warm sky",
12 "aspect_ratio": "16:9",
13 "duration": 5,
14 "seed": 12345
15}
16
17response = requests.post(url, headers=headers, json=data)
18
19if response.status_code == 200:
20 result = response.json()
21 print(json.dumps(result, indent=2))
22else:
23 print(f"Error: {response.status_code}")
24 print(response.text) 1import requests
2import json
3
4url = "https://api.segmind.com/v1/p-video"
5headers = {
6 "x-api-key": "YOUR_API_KEY",
7 "Content-Type": "application/json"
8}
9
10data = {
11 "prompt": "A cinematic aerial shot of a coastal city at golden hour, with sunlight reflecting off glass skyscrapers and gentle waves lapping against a sandy shore, birds flying across the warm sky",
12 "aspect_ratio": "16:9",
13 "duration": 5,
14 "seed": 12345
15}
16
17response = requests.post(url, headers=headers, json=data)
18
19if response.status_code == 200:
20 result = response.json()
21 print(json.dumps(result, indent=2))
22else:
23 print(f"Error: {response.status_code}")
24 print(response.text)API Endpoint
https://api.segmind.com/v1/p-videoParameters
promptrequiredstringText prompt describing the video scene, subject, action, and style. Be specific with camera angles, lighting, and motion for best results.
aspect_ratiooptionalstringControls the output video dimensions. Use 16:9 for YouTube/widescreen, 9:16 for TikTok/Reels, 1:1 for social posts.
"16:9""1:1""16:9""9:16""4:3""3:4""3:2""2:3"durationoptionalintegerLength of the generated video in seconds (3-15). Use 3-5s for quick loops or ads, 10-15s for narrative scenes.
5Range: 3 - 15seedoptionalintegerFixed seed for reproducible outputs across runs. Set to -1 for random generation each time.
12345Range: -1 - 999999999999999Response Type
Returns: Video
Common Error Codes
The API returns standard HTTP status codes. Detailed error messages are provided in the response body.
Bad Request
Invalid parameters or request format
Unauthorized
Missing or invalid API key
Forbidden
Insufficient permissions
Not Found
Model or endpoint not found
Insufficient Credits
Not enough credits to process request
Rate Limited
Too many requests
Server Error
Internal server error
Bad Gateway
Service temporarily unavailable
Timeout
Request timed out