Video Downloader API

Fully documented developer REST integration points. Query video metadata, inspect quality streams, and capture media files.

01

REST API Overview

Aero serves developer endpoints to fetch raw video data. Send standard HTTPS GET requests containing the video URL, and receive clean structured JSON outputs listing video details, formats, and high-speed CDN paths.

02

Query Endpoint Structure

Endpoint URL path: GET /api/info

Parameter Type Required Description
url String Yes The target video sharing link (YouTube, TikTok, Facebook, etc.)
format String No Filter results by quality (e.g. best, audio, 720p)
03

Live API Playground

Test the live endpoint directly from your browser. Paste any supported video URL below to see the actual JSON response payload in real-time.

04

Integration Code Example

Here is a Javascript example showing how to query the endpoint from your server-side environment:

async function fetchVideoData(targetUrl) {
  const endpoint = `https://aerodownloader.com/api/info?url=${encodeURIComponent(targetUrl)}`;
  const response = await fetch(endpoint);
  if (!response.ok) {
    throw new Error('API query failed');
  }
  const data = await response.json();
  return data;
}
      
05

Key Features

06

Supported Output Formats

FormatResolutionQualityFile Type
API ResponseJSONREST
Video OutputUp to 1080pHighestMP4
Audio Output320kbpsMP3
Metadata OnlyJSONREST
07

Frequently Asked Questions

Do I need an API key?

Yes. Enterprise API access requires an API key for authentication and rate limit management. Contact us to request access.

What platforms does the API support?

The API supports YouTube, Instagram, TikTok, Facebook, and Pinterest. Additional platforms are added based on demand.

Is there a rate limit?

Free tier allows 60 requests per minute. Enterprise plans offer higher throughput and dedicated infrastructure.

08

Alternative Tooling

For manual batch downloads, try our Bulk Video Downloader. Individual platform tools are available in our platforms.