Back to Blog

Automate Video Editing with the TikTok Portrait Converter API

June 2026 FFMPEG API Team

As the world of social media evolves, so do the requirements for video formats. TikTok's full-bleed 9:16 portrait videos have become a standard, and automating the conversion process can save valuable time for developers. FFMPEGAPI.net offers a powerful hosted REST API that allows you to convert videos into the perfect TikTok format without any server setup or FFmpeg management. In this article, we will explore how to use the TikTok Portrait Converter API to streamline your video editing workflow.

What is the TikTok Portrait Converter API?

The TikTok Portrait Converter API is a dedicated endpoint provided by FFMPEGAPI.net that allows you to transform landscape videos into the 9:16 portrait format required by TikTok. This process involves cropping and scaling the source video to fit the standard dimensions of 1080x1920 pixels.

By leveraging this API, developers can create applications that automatically generate TikTok-ready videos, making it an essential tool for content creators, automation tools, and SaaS applications.

  • Converts videos to TikTok's 9:16 format.
  • Supports optional watermark and outro video URLs.
  • Offers both synchronous and asynchronous processing.

Using the TikTok Portrait Converter API

To use the TikTok Portrait Converter API, you'll need to make a POST request to the following endpoint: `/api/convert_to_tiktok_portrait`. The API requires a JSON payload that includes the video URL, and optionally, a watermark URL and outro video URL.

Here's a breakdown of the parameters you can send with your request:

  • video_url (string, required): The URL of the video you want to convert.
  • watermark_url (string, optional): An optional URL for a watermark image.
  • outro_video_url (string, optional): An optional URL for an outro video.
  • async (boolean, optional): Set to true to process in the background.
curl -X POST https://ffmpegapi.net/api/convert_to_tiktok_portrait \
  -H 'Content-Type: application/json' \
  -d '{"video_url": "https://example.com/landscape.mp4", "outro_video_url": "https://example.com/outro.mp4"}'
import requests

url = 'https://ffmpegapi.net/api/convert_to_tiktok_portrait'
data = {
    'video_url': 'https://example.com/landscape.mp4',
    'outro_video_url': 'https://example.com/outro.mp4'
}

response = requests.post(url, json=data)
print(response.json())

Why Choose FFMPEGAPI.net?

FFMPEGAPI.net stands out as the best choice for developers looking to automate video processing workflows. The hosted nature of the API means you don't have to worry about server setup or managing FFmpeg infrastructure. Additionally, the API-key authentication allows for secure and efficient integration into your applications.

  • No server management required, saving time and resources.
  • Secure API-key based authentication for workflow integration.
  • Ideal for developers building automation tools, content pipelines, and AI agents.

Transforming your videos into TikTok's portrait format has never been easier. With the TikTok Portrait Converter API from FFMPEGAPI.net, you can automate the entire process and focus on creating content rather than handling technical complexities. Start using the API today and elevate your video editing workflow!

Ready to Start Processing Videos?

Get your free API key and start merging videos in minutes

Get Started Free