Loading
Loading
Use NeoQuicksy APIs to generate, analyze, transform, and automate video workflows through secure and scalable endpoints.
https://api.neoquicksy.com/v1Secure API access.
All API requests require authentication using an API key. Pass your key in the Authorization header on every request.
Authorization: Bearer YOUR_API_KEY
Content-Type: application/jsonGET /v1/account
Authorization: Bearer YOUR_API_KEY{
"success": true,
"account_id": "acc_123456",
"plan": "Professional"
}Generate videos from text or images.
/v1/video/generate{
"prompt": "A futuristic smart city at night with flying vehicles",
"duration": 10,
"resolution": "1080p"
}{
"success": true,
"job_id": "vid_789123",
"status": "processing"
}/v1/video/status/{job_id}{
"job_id": "vid_789123",
"status": "completed",
"progress": 100
}/v1/video/{job_id}{
"video_url": "https://cdn.neoquicksy.com/videos/output.mp4",
"duration": 10
}Analyze and understand video content.
/v1/intelligence/analyze{
"video_url": "https://example.com/video.mp4"
}{
"success": true,
"analysis_id": "ana_456789",
"status": "processing"
}/v1/intelligence/results/{analysis_id}{
"scenes": 12,
"objects_detected": 54,
"summary": "The video contains urban traffic and pedestrian activity."
}Enhance and modify video content.
/v1/transform/enhance{
"video_url": "https://example.com/video.mp4",
"enhancement": "upscale"
}{
"success": true,
"job_id": "enh_123456"
}/v1/transform/subtitles{
"video_url": "https://example.com/video.mp4",
"language": "en"
}{
"subtitle_url": "https://cdn.neoquicksy.com/subtitles/file.srt"
}Automate video operations.
/v1/workflows{
"workflow_name": "Marketing Video Pipeline",
"steps": [
"generate_video",
"enhance_video",
"publish"
]
}{
"workflow_id": "wf_987654",
"status": "created"
}/v1/workflows/{workflow_id}/run{
"execution_id": "exec_112233",
"status": "running"
}Manage account information.
/v1/account{
"account_id": "acc_123456",
"email": "[email protected]",
"plan": "Business"
}/v1/account/usage{
"videos_generated": 145,
"api_requests": 12850,
"storage_used": "18GB"
}Receive real-time events.
video.generatedvideo.failedanalysis.completedworkflow.completedworkflow.failed{
"event": "video.generated",
"job_id": "vid_789123",
"status": "completed"
}Standard HTTP status codes.
| Code | Description |
|---|---|
| 400 | Bad Request |
| 401 | Unauthorized |
| 403 | Forbidden |
| 404 | Resource Not Found |
| 429 | Rate Limit Exceeded |
| 500 | Internal Server Error |
Limits by plan tier.
Starter
100
requests / day
Professional
10,000
requests / month
Business
100,000
requests / month
Enterprise
Custom
limits
Official client libraries.
Need help?

Integrate intelligent video generation, analysis, transformation, and automation into your applications.