Documentation Index Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
Use this file to discover all available pages before exploring further.
Server path: /runwayml | Type: Application | PCID required: Yes
Tool Description runwayml_cancel_taskCancel a task runwayml_edit_videoEdit a video with a prompt runwayml_get_organizationGet organization info runwayml_get_taskGet task status and result runwayml_image_to_videoGenerate a video from an image runwayml_text_to_imageGenerate an image from a text prompt runwayml_upscale_videoUpscale a video
runwayml_cancel_task
Cancel a task
Parameters:
Parameter Type Required Default Description taskIdstring Yes — The task ID to cancel
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"taskId" : {
"type" : "string" ,
"description" : "The task ID to cancel"
}
},
"required" : [
"PCID" ,
"taskId"
]
}
runwayml_edit_video
Edit a video with a prompt
Parameters:
Parameter Type Required Default Description modelstring Yes — Model to use for video editing promptTextstring Yes — Text prompt describing the desired video transformation ratiostring No — Output video aspect ratio referencesobject[] No — Optional reference images to guide style or content videoUristring Yes — Source video as a URL or data URI
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"model" : {
"type" : "string" ,
"description" : "Model to use for video editing" ,
"enum" : [
"gen4_aleph"
]
},
"promptText" : {
"type" : "string" ,
"description" : "Text prompt describing the desired video transformation"
},
"ratio" : {
"type" : "string" ,
"description" : "Output video aspect ratio" ,
"enum" : [
"1280:720" ,
"720:1280" ,
"1104:832" ,
"960:960" ,
"832:1104" ,
"1584:672" ,
"848:480" ,
"640:480"
]
},
"references" : {
"type" : "array" ,
"items" : {
"type" : "object"
},
"description" : "Optional reference images to guide style or content"
},
"videoUri" : {
"type" : "string" ,
"description" : "Source video as a URL or data URI"
}
},
"required" : [
"PCID" ,
"model" ,
"promptText" ,
"videoUri"
]
}
runwayml_get_organization
Get organization info
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
}
},
"required" : [
"PCID"
]
}
runwayml_get_task
Get task status and result
Parameters:
Parameter Type Required Default Description taskIdstring Yes — The task ID returned from a generation request
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"taskId" : {
"type" : "string" ,
"description" : "The task ID returned from a generation request"
}
},
"required" : [
"PCID" ,
"taskId"
]
}
runwayml_image_to_video
Generate a video from an image
Parameters:
Parameter Type Required Default Description durationinteger No — Video duration in seconds (5 or 10) modelstring Yes — Model to use for generation promptImagestring Yes — Source image as a URL or base64-encoded data URI promptTextstring Yes — Optional text prompt to guide the video generation ratiostring No — Output video aspect ratio
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"duration" : {
"type" : "integer" ,
"description" : "Video duration in seconds (5 or 10)" ,
"enum" : [
5 ,
10
]
},
"model" : {
"type" : "string" ,
"description" : "Model to use for generation" ,
"enum" : [
"gen4_turbo" ,
"gen3a_turbo"
]
},
"promptImage" : {
"type" : "string" ,
"description" : "Source image as a URL or base64-encoded data URI"
},
"promptText" : {
"type" : "string" ,
"description" : "Optional text prompt to guide the video generation"
},
"ratio" : {
"type" : "string" ,
"description" : "Output video aspect ratio" ,
"enum" : [
"1280:720" ,
"720:1280" ,
"1104:832" ,
"832:1104" ,
"960:960" ,
"1584:672"
]
}
},
"required" : [
"PCID" ,
"model" ,
"promptImage" ,
"promptText"
]
}
runwayml_text_to_image
Generate an image from a text prompt
Parameters:
Parameter Type Required Default Description modelstring Yes — Model to use for generation promptTextstring Yes — Text prompt describing the image to generate ratiostring No — Output image aspect ratio referenceImagesobject[] No — Optional reference images to guide style or content
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"model" : {
"type" : "string" ,
"description" : "Model to use for generation" ,
"enum" : [
"gen4_image" ,
"gen4_image_turbo" ,
"gemini_2.5_flash" ,
"gemini_3_pro"
]
},
"promptText" : {
"type" : "string" ,
"description" : "Text prompt describing the image to generate"
},
"ratio" : {
"type" : "string" ,
"description" : "Output image aspect ratio" ,
"enum" : [
"1920:1080" ,
"1080:1920" ,
"1024:1024" ,
"1360:768" ,
"1080:1080" ,
"1168:880" ,
"1440:1080" ,
"1080:1440" ,
"1808:768" ,
"2112:912" ,
"1280:720" ,
"720:1280" ,
"720:720" ,
"960:720" ,
"720:960" ,
"1680:720"
]
},
"referenceImages" : {
"type" : "array" ,
"items" : {
"type" : "object"
},
"description" : "Optional reference images to guide style or content"
}
},
"required" : [
"PCID" ,
"model" ,
"promptText"
]
}
runwayml_upscale_video
Upscale a video
Parameters:
Parameter Type Required Default Description modelstring Yes — Model to use for upscaling videoUristring Yes — Source video as a URL or data URI
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"model" : {
"type" : "string" ,
"description" : "Model to use for upscaling" ,
"enum" : [
"upscale_v1"
]
},
"videoUri" : {
"type" : "string" ,
"description" : "Source video as a URL or data URI"
}
},
"required" : [
"PCID" ,
"model" ,
"videoUri"
]
}