GoEnhance API
  1. Video Effect
GoEnhance API
  • GUIDES
    • Quickstart
    • Limits
    • Best Practices
    • Privacy Policy and Terms of Use
  • Basic
    • Get Job Detail
      GET
    • Get User Tokens
      GET
  • Video2Video
    • Generate Video
      POST
    • Model List
      GET
  • ImageFaceSwap
    • Generate Image Face Swap
      POST
  • VideoFaceSwap
    • Generate Video Face Swap
      POST
  • Video Effect
    • AI Video Effect
      POST
    • AI Video Effect List
      GET
  • Text To Image
    • Generate Image
      POST
  1. Video Effect

AI Video Effect

POST
/api/v1/videoeffect/generate

Request

Header Params
Authorization
string 
required
Example:
{{Authorization}}
Body Params application/json
args
object 
required
reference_img
string 
optional
target image, Max 5M
model
enum<string> 
required
from effect list API
Allowed values:
tinyspark
effect_id
string 
required
from effect list API
<= 500 characters
type
enum<string> 
required
mx-ai-video-effect
Allowed value:
mx-ai-video-effect
Example
{
  "args": {
    "reference_img": "https://cdn.goenhance.ai/user/goenhance/f52840534004f9a52cbe6d2aec7fa164.jpg",
    "model": "tiny",
    "effect_id": "kiss"
  },
  "type": "mx-ai-video-effect"
}

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.goenhance.ai/api/v1/videoeffect/generate' \
--header 'Authorization: {{Authorization}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "args": {
        "reference_img": "https://cdn.goenhance.ai/user/goenhance/f52840534004f9a52cbe6d2aec7fa164.jpg",
        "model": "tiny",
        "effect_id": "kiss"
    },
    "type": "mx-ai-video-effect"
}'

Responses

🟢200Success
application/json
Body
code
integer 
required
msg
string 
required
data
object 
required
img_uuid
string 
required
Example
{
  "code": 0,
  "msg": "Success",
  "data": {
    "img_uuid": "c12b656c-747a-44fd-9c80-add79b0c52d5"
  }
}
Modified at 2025-03-24 10:22:11
Previous
Generate Video Face Swap
Next
AI Video Effect List
Built with