GigaReels LogoGigaReels
API Reference

Bypass Duplicate Detection API

API reference for the bypass duplicate detection endpoint

The Bypass Duplicate Detection API allows you to programmatically generate videos that bypasses popular duplicate detection algorithms.

Endpoint

POST /api/render/bypass-duplicate

Authorization

All API requests require an API key to be included in the Authorization header.

Authorization: Bearer YOUR_API_KEY

Request Body

FieldTypeDescription
videoUrlstringRequired. The URL of your video.
enableDistortionBarboolIf true, renders a horizontal distortion bar that animates up and down.
audioPitchDistortionnumberAccepts a number between 0.01 and 2, where 1 represents the original pitch. Values less than 1 will decrease the pitch, while values greater than 1 will increase it.
framesToKillnumberNumber of frames to remove from the end of the video.

Example Request

{
  "videoUrl": "https://example.com/my-video.mp4",
  "enableDistortionBar": true,
  "audioPitchDistortion": 0.1,
  "framesToKill": 30
}

Example Response

{
  "success": true,
  "renderId": "some-render-id"
}