Generate dynamic videos from image URLs with custom configurations
API Key is required for all requests
Each registered user receives a unique API key. Include this key in the Authorization
header of your requests.
POST /video_processing_api
{
"URLs": [
"https://example.com/image1.jpg",
"https://example.com/image2.jpg"
],
"resolution": "hd",
"background_music": {
"url": "https://example.com/music.mp3",
"volume": "normal"
},
"voiceover": {
"url": "https://example.com/voiceover.mp3",
"volume": "normal"
}
}
{
"status": "processing",
"job_id": "123456",
"estimated_duration": 10,
"total_images": 2,
"urls": ["https://example.com/image1.jpg", "https://example.com/image2.jpg"],
"resolution": "hd",
"check_status_after": 60
}
json2screen
json2screen check status
job_id
from initial requestStatus Code | Description |
---|---|
400 | Bad Request (No URLs, Invalid Data) |
401 | Unauthorized (Invalid API Key) |
500 | Internal Server Error |