- GET START
- OpenAI Compatiable Endpoint
- Audio
- Anthropic Compatiable Endpoint
- Music Generation Endpoint
- Image Generation Endpoint
- Midjourney(images)
- Ideogram(images)
- Official documentation (updated in real time)
- Generate 3.0 (text to image)
- Remix 3.0 (hybrid image)
- Reframe 3.0(Reconstruction)
- Replace Background 3.0(Background replacement)
- Edit 3.0(Editing images)
- ideogram Text Raw Image
- ideogram Hybrid image
- ideogram enlargement HD
- ideogram describes the image
- ideogram Edit image((legacy))
- Flux(images)
- Replicate(image)
- Recraft(images)
- Video Generation Ednpoint
- veo3
- runway(video)
- kling (video)
- MiniMax Conch(video)
- luma (video)
- PIKA(video)
- sora
- Software Integration Guide
- cometapi Site API Call Testing
- OpenManus
- Chatbox
- CherryStudio
- Cursor
- ChatHub
- COZE
- FastGPT
- cline
- dify
- gptme
- Immersive Translation
- Lobe-Chat
- Zotero
- LangChain
- AnythingLLM
- Eudic Translation
- OpenAI Translator
- ChatAll Translation
- Pot Translation
- GPT Academic Optimization (gpt_academic)
- NEXT CHAT (ChatGPT Next Web)
- Obsidian's Text Generator Plugin
- Open WebUI
- avante.nvim
- librechat
- Lazy Customer Service
- utools-ChatGPT Friend
- IntelliJ Translation Plugin
- n8n
Query video generation status
Testing
GET
https://api.cometapi.com/veo/v1/api/video/status/{taskId}
Maintainer:Not configured
Request
Path Params
taskId
string
required
Example:
veo3:a1b2c3d4-e5f6-7890-abcd-ef1234567890
Header Params
Authorization
string
optional
Example:
Bearer {{api-key}}
X-Runway-Version
string
optional
Example:
2024-11-06
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.cometapi.com/veo/v1/api/video/status/veo3:a1b2c3d4-e5f6-7890-abcd-ef1234567890' \
--header 'Authorization: Bearer {{api-key}}' \
--header 'X-Runway-Version: 2024-11-06'
Responses
🟢200OK
application/json
Body
success
boolean
optional
data
object
optional
taskId
string
optional
status
enum<string>
optional
Allowed values:
processingcompletedfailed
progress
object
optional
result
string
optional
message
string
optional
error
string
optional
Example
{
"success": true,
"data": {
"taskId": "veo3:a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": "processing",
"progress": {
"upstreamStatus": "video_generating",
"videoGenerationStatus": "MEDIA_GENERATION_STATUS_ACTIVE",
"retryCount": 0,
"maxRetries": 3
},
"message": "Video generation in progress, expected to take another 2-5 minutes"
}
}