VideosAdvance Video Editing
Videos

Advance Video Editing

Use this endpoint to create a content with watermarks and overlays

curl -X POST "https://api.videograph.ai/video/services/api/v1/contents/adv" \
  -H "Content-Type: application/json" \
  -H "Accept: example_string" \
  -H "Authorization: Basic YOUR_CREDENTIALS" \
  -d '{
  "title": "Phani Adv",
  "description": "Video description",
  "tags": [
    "tag1",
    "tag2"
  ],
  "metadata": [
    {
      "key": "abc",
      "value": "pqr"
    }
  ],
  "playback_policy": [
    "public",
    "signed"
  ],
  "mp4_support": true,
  "overlay": {
    "logo": [
      {
        "config": {
          "h": 240,
          "w": 120,
          "x": 0,
          "y": 0
        },
        "layer": 1,
        "settings": null,
        "end": 4,
        "start": 0,
        "src": "https://videographond.akamaized.net/thumb/700x700/enc/yupptv/development/yupptv/3395/mp4/image/1.jpg"
      }
    ],
    "text": [
      {
        "config": {
          "h": 80,
          "w": 120,
          "x": 0,
          "y": 0
        },
        "fontcolor": "red",
        "fontfile": "Times New Roman",
        "fontsize": 80,
        "layer": 2,
        "settings": {
          "end": 3,
          "start": 0
        },
        "src": "Hello adv"
      }
    ]
  },
  "video": [
    {
      "layer": 0,
      "settings": {
        "duration": 3,
        "start": 0
      },
      "src": "https://d19nx8bm4jzw4h.cloudfront.net/Tears-of-steel.mp4"
    },
    {
      "layer": 0,
      "settings": {
        "end": 6,
        "start": 4
      },
      "src": "https://d19nx8bm4jzw4h.cloudfront.net/Tears-of-steel.mp4"
    }
  ]
}'
{
  "code": 200,
  "message": "Data success",
  "status": "Success",
  "data": {
    "contentId": "75615af3-2e97-4c8a-af98-92ab14df0965",
    "created_at": 1676204780126,
    "description": "Video description",
    "duration": 0,
    "isAdvanced": true,
    "metadata": [
      {
        "key": "abc",
        "value": "pqr"
      }
    ],
    "mp4_support": true,
    "playbackPolicy": [
      "public",
      "signed"
    ],
    "save_original_copy": false,
    "status": "Pending",
    "statusId": 1,
    "tags": [
      "tag1",
      "tag2"
    ],
    "test_video": false,
    "title": "Phani Adv"
  }
}
POST
/video/services/api/v1/contents/adv
POST
Security Scheme
Basic Authentication
Usernamestring
Required

Username for basic authentication

Passwordpassword
Required

Password for basic authentication

Content-Typestring
Required

The media type of the request body

Options: application/json
titlestring
Required

Provide a title for your content.

descriptionstring

Describe your content.

videoarray
Required

Provide the source url to download the content. If you want to create video clips from the video then pass on the start time and end time of the clip along with source url.

overlayobject

Watermark details on video content

tagsarray

Provide a list of tags that best describe your content.

metadataarray

Provide content metadata as key value pairs.

playback_policyarray
Required

Playback policies. Allowed are public, signed or both

mp4_supportboolean

Is MP4 generation supported

Request Preview
Response

Response will appear here after sending the request

Authentication

basicAuth
header
Authorizationstring
Required

Basic authentication credentials. Provide username and password encoded in Base64 format: Basic base64(username:password)

Headers

Body

application/json
titlestring
Required

Provide a title for your content.

descriptionstring

Describe your content.

videoarray
Required

Provide the source url to download the content. If you want to create video clips from the video then pass on the start time and end time of the clip along with source url.

overlayobject

Watermark details on video content

tagsarray

Provide a list of tags that best describe your content.

metadataarray

Provide content metadata as key value pairs.

playback_policyarray
Required

Playback policies. Allowed are public, signed or both

mp4_supportboolean

Is MP4 generation supported

Responses

OK

Was this page helpful?
Built with Documentation.AI

Last updated Dec 29, 2025