Getting Started

Introduction to FetchMedia

Discover FetchMedia, an API platform that simplifies fetching and processing videos from social media sources like TikTok, Instagram, and YouTube using FFmpeg for automated editing and repurposing.

Overview

FetchMedia provides a unified API to fetch videos from social media platforms like TikTok, Instagram, YouTube, LinkedIn, X, and Facebook. You process these videos server-side with FFmpeg for tasks such as trimming, adding watermarks, or converting formats. Integrate FetchMedia into your workflows with tools like n8n, Make, or any HTTP client to automate video fetching, editing, and repurposing.

Key Features

FetchMedia streamlines your video workflows with powerful capabilities.

Supported Platforms

FetchMedia handles videos from major social sources. Use the same API call structure across platforms.

Fetch short-form videos and Reels with metadata like captions and likes.

All platforms use the https://api.fetchmedia.io/v1/fetch endpoint. Provide a video URL and optional FFmpeg commands.

Quick Start

Get started in minutes.

Sign Up

Create an account at https://app.fetchmedia.io and generate your API key.

Fetch a Video

Use this example to fetch and process a TikTok video.

const response = await fetch('https://api.fetchmedia.io/v1/fetch', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    url: 'https://www.tiktok.com/@user/video/123456789'
  })
});
const data = await response.json();
console.log(data.downloadUrl);

Download Processed Video

Access the downloadUrl from the response to retrieve your edited video.

Benefits for Your Workflows

Automate repetitive video tasks. Save hours by fetching, editing, and exporting content without manual downloads or desktop tools. Scale your social media repurposing with reliable processing that handles high volumes.

Next Steps

Replace YOUR_API_KEY with your actual key from the dashboard. Start with simple fetches before adding complex FFmpeg commands.

Was this page helpful?
Built with Documentation.AI

Last updated today