API Doc-CometAPI
HomeDashBoardModel_Price
HomeDashBoardModel_Price
Discord_Support
  1. Reverse Format
  • GET START
    • Model New Release Announcement
    • Platform notification
    • Help Center
    • Quick Start
    • About Pricing
    • About Grouping
    • Interface Stability
    • Privacy policy
    • Terms of service
    • Error code description
    • Code example
    • Must see for use
    • Common Misconceptions
    • Confusion about use
    • Best Practices
      • CometAPI Account Balance Query API Usage Instructions
      • Retry Logic Documentation for CometAPI and OpenAI Official API
      • Midjourney Best Practices
      • Runway Best Practices
  • OpenAI Compatiable Endpoint
    • gpt-4o-image generates image
    • Chat
    • Recognizing Images
    • Models
    • Embeddings
    • Images
    • Realtime
    • Image Editing (gpt-image-1)
  • Audio
    • Create speech
    • Create transcription
    • Create translation
  • Anthropic Compatiable Endpoint
    • Anthropic Claude
  • Music Generation Endpoint
    • Suno
      • Setting suno Version
      • Generate lyrics
      • Generate music clip
      • Upload clip
      • Submit concatenation
      • Single task query
      • Batch query tasks
    • Udio(Temporarily unavailable)
      • Generate music
      • Task query
  • Image Generation Endpoint
    • Midjourney(images)
      • Quick Tutorial - Complete Process in One Go
      • Task Fetching API
        • List by Condition
        • Fetch Single Task (most recommended)
      • Imagine
      • Action (UPSCALE; VARIATION; REROLL; ZOOM, etc.)
      • Blend (image -> image)
      • Describe (image -> text)
      • Modal (Area Redesign & Zoom)
    • 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
    • Flux(images)
      • Generate image (replicate format)
      • flux fine-tune images(Temporarily unavailable)
      • flux generate image(Temporarily unavailable)
      • flux query
    • Replicate(image)
      • replicate Generate
      • replicate query
    • Recraft(images)
      • Appendix
      • Recraft Generate Image
      • Recraft Vectorize Image
      • Recraft Remove Background
      • Recraft Clarity Upscale
      • Recraft Create style
      • Recraft Generative Upscale
  • Video Generation Ednpoint
    • runway(video)
      • official format
        • runway images raw video
        • runway to get task details
      • Reverse Format
        • generate(text)
          POST
        • generate(Reference images)
          POST
        • Video to Video Style Redraw
          POST
        • Act-one Expression Migration
          POST
        • feed-get task
          POST
    • kling (video)
      • callback_url
      • Generating images
      • Text Generation Video
      • Image Generation Video
      • Video Extension
      • virtual try-on
      • lip sync
      • Individual queries (videos)
    • MiniMax Conch(video)
      • MiniMax Conch Official Documentation
      • MiniMax Conch Generation
      • MiniMax Conch Query
      • MiniMax Conch Download
    • luma (video)
      • Official api interface format
        • luma generate
        • luma search
    • PIKA(video)
      • pika feed
      • PIKA Reference Video Generation
      • PIKA Reference Image Generation
      • PIKA reference text generation
    • sora
      • Reverse Format
        • Create Video
        • Query Video Task
        • Create Video
  • 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
  1. Reverse Format

generate(Reference images)

POST
https://api.cometapi.com/runway/pro/generate
Maintainer:Not configured
Here is a simple example of a GEN-4 graphic raw video transfer.

Request

Header Params
Authorization
string 
optional
Example:
Bearer {{api-key}}
X-Runway-Version
string 
optional
Example:
2024-11-06
Body Params application/json
callback_url
string 
required
Callback URL, used to receive processing result notifications
image
string 
required
Input image URL address
ratio
string 
required
Generated video aspect ratio
prompt
string 
required
Image processing or generation prompt, describing the expected image content or changes
style
string 
optional
Expected image style, for example "cinematic"
model
string 
required
Model version used, for example "gen4"
options
object 
optional
Specific processing options
seconds
integer 
required
Animation or video duration (unit: seconds)
image_as_end_frame
string 
required
Whether to use the input image as the last frame of the generated video
flip
string 
required
Whether to flip/mirror the image
motion_vector
object 
required
Motion vector parameters, used to control dynamic effects
last_image
string 
optional
End frame
Example
{
    "callback_url": "http://baidu.com",
    "image": "https://db.xiaohuhd.com/1.jpeg",
    "style": "cinematic",
    "model": "gen4",
    "prompt": "Smile, Eat Burger",
    "options": {
        "seconds": 10,
        "image_as_end_frame": false,
        "flip": false,
        "motion_vector": {
            "x": -6.2,
            "y": 0,
            "z": 0,
            "r": 0,
            "bg_x_pan": 0,
            "bg_y_pan": 0
        }
    }
}

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 POST 'https://api.cometapi.com/runway/pro/generate' \
--header 'Authorization: Bearer {{api-key}}' \
--header 'X-Runway-Version: 2024-11-06' \
--header 'Content-Type: application/json' \
--data-raw '{
    "callback_url": "http://baidu.com",
    "image": "https://db.xiaohuhd.com/1.jpeg",
    "style": "cinematic",
    "model": "gen4",
    "prompt": "Smile, Eat Burger",
    "options": {
        "seconds": 10,
        "image_as_end_frame": false,
        "flip": false,
        "motion_vector": {
            "x": -6.2,
            "y": 0,
            "z": 0,
            "r": 0,
            "bg_x_pan": 0,
            "bg_y_pan": 0
        }
    }
}'

Responses

🟢200OK
application/json
success
Body
code
integer 
required
HTTP status code or business status code, 200 usually indicates success
msg
string 
required
Text description of the status code
data
object 
required
Specific response data content
task_id
string 
required
Unique identifier of the task, used for subsequent query of task status or results
exec_time
number 
required
Time spent processing this request
Example
{
    "code": 200,
    "msg": "success",
    "data": {
        "task_id": "9f6243e5-3ab8-49c3-9c3c-6309ef5c96bd",
        "state": "",
        "status": "",
        "prompt": "",
        "prompt_en": null,
        "video_url": null,
        "poster": null,
        "last_frame": null,
        "msg": null,
        "point": "",
        "refund": "",
        "create_time": "",
        "update_time": ""
    },
    "exec_time": 20.930577
}
Previous
generate(text)
Next
Video to Video Style Redraw
Built with