>docs/api/effects
Effects API
Apply video effects and scene transformations to images using nohuman-x33. Provide an image and an effect scene — the model generates a video with the specified effect applied. Great for social media content, greeting cards, and creative projects.
# Generate Endpoint
POST
/v1/videos/effectsGenerate a video by applying an effect scene to an image.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
image | string | required | Publicly accessible URL to the source image. |
effect_scene | string | required | The effect scene to apply (e.g. "christmas", "hug", "kiss", "fireworks"). |
Response
{
"id": "gen_fx_d4e5f6",
"model": "nohuman-x33",
"status": "created",
"poll_url": "/v1/videos/generations/gen_fx_d4e5f6"
}# Code Examples
Effects Generation
curl -X POST https:"code-comment">//api.nohuman.studio/v1/videos/effects \
-H "Authorization: Bearer $NOHUMAN_KEY" \
-H "Content-Type: application/json" \
-d '{
"image": "https://example.com/portrait.jpg",
"effect_scene": "christmas"
}'# Pricing
| Feature | Cost |
|---|---|
| Effects (image-to-video) | $0.25 per generation |
SYS :: effects/v1 :: endpoint reference