More modelsVideo effectsJiggle up

Generate video with video-effects/jiggle-up

Generates a video using the video-effects/jiggle-up model.

POST
/api/v1/model/generateVideo
AuthorizationBearer <token>

API key is required to authorize requests. Obtain a key from your AtlasCloud dashboard.

In: header

modelstring

model name

imagestring

An image to be used as the start frame of the generated video. Requirements: 1. Only accepts 1 image; 2. Only supports realistic or anime-style single female photos; 3. Best results when the subject is shown from the front and includes at least the upper body or the full body; 4. Images can be provided via URLs or Base64 encode; 5. Supported codecs: PNG, JPEG, JPG, WebP; 6. Image aspect ratio must be less than 1:4 or 4:1; 7. Maximum file size: 50MB; 8. Base64 decode length must be under 50MB with appropriate content type string.

Response Body

curl -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \  -H "Content-Type: application/json" \  -d '{    "model": "video-effects/jiggle-up",    "image": "https://static.atlascloud.ai/media/images/1751548275932447106_iQ952YUQ.jpeg"  }'
{
  "id": "string",
  "urls": {},
  "model": "string",
  "status": "string",
  "outputs": [
    "string"
  ],
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ]
}