> ## Documentation Index
> Fetch the complete documentation index at: https://docs.realtoraai.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Replicate Parallax

> 3D parallax effect from static images.

Generate a 3D parallax motion effect from a static image.

## Endpoint

```
POST /functions/v1/replicate-parallax
```

## Authentication

Requires valid JWT.

## Request Body

```json theme={null}
{
  "action": "batch",
  "image_urls": ["https://...", "https://..."]
}
```

## Response

```json theme={null}
{
  "clips": [
    { "index": 0, "video_url": "https://..." },
    { "index": 1, "video_url": "https://..." }
  ],
  "success_count": 2,
  "total": 2
}
```
