---
title: "FastSaverAPI — Media Downloader API (now api.fastsaver.io)"
url: https://fastsaverapi.com/
description: "One REST API for Instagram, TikTok, YouTube, Shazam and six more — clean JSON, no cookies or proxies. Now served from api.fastsaver.io. Free tier, no card."
updated: 2026-08-10
api_base: https://api.fastsaver.io/v1
site_index: https://fastsaverapi.com/llms.txt
openapi: https://fastsaverapi.com/openapi.json
---

# FastSaverAPI is now at api.fastsaver.io

One REST API that turns a social-media link into a direct download URL and clean JSON.
Nine platforms, one key. Since 2026-07-24 it is served from
api.fastsaver.io — this site keeps the references and the guides.

- **New base URL**: https://api.fastsaver.io/v1

- **Old base URL**: https://fastsaverapi.com/v1 · 301

- **API keys**: unchanged

- **Response shape**: identical

Moved 2026-07-24. Only the host changed —
the full migration note lists every old path and where it now points.

## one API key, one request shape

- Send a link and your X-Api-Key . Get JSON with a direct download URL.
- No cookies, no proxies, no headless browser, no watermarks.
- Nine platforms behind two endpoint shapes — /fetch and the YouTube family.
- Telegram file_id for cached audio, so a bot replies without touching the file.
- Pay per request: 1–25 credits depending on the call. Free tier is 1,000 credits, no card —
see plans .

POST
https://api.fastsaver.io/v1/youtube/download
the heaviest call there is



```
curl -X POST https://api.fastsaver.io/v1/youtube/download \
  -H "X-Api-Key: fs_sk_•••••••••••" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://youtu.be/6dG1WWjew8s", "format": "2160p"}'
```



```
{
  "ok": true,
  "video_id": "6dG1WWjew8s",
  "duration": 577,
  "download_url": "https://api.fastsaver.io/v1/tunnel?id=3f7a1c9e-52b4-4d18"
}
```


## pick your platform

Each page is a reference: the exact call, the response fields, the credit cost, working code,
and where it stops working.

### Instagram

Reels, posts, carousels, stories.

### TikTok

Videos and photo posts, no watermark.

### YouTube

Up to 4K, audio, search, metadata.

### Telegram bots

Cached audio as a ready file_id .

### Shazam

Recognise a song, charts, lyrics.

### Pinterest

Pins, pin videos, idea pins.

### X (Twitter)

Videos and GIFs from public posts.

### Facebook

Public videos and reels.

### RuTube

Russian-language video hosting.

## or start from a working example

### Telegram music bot

Search, then answer with a cached file_id .

### Instagram reels in Python

A downloader with retries and streaming.

### YouTube to MP3

Audio over HTTP, without yt-dlp.

### TikTok without the watermark

Why the clean file is hard to get.

## Keep reading

- The domain change — old paths → new paths
- FAQ — credits, limits, legality
- API docs & live playground — on api.fastsaver.io
- llms.txt — machine-readable index

## Get a key and make the first call

1,000 credits free, no card. Sign-up and the playground are on api.fastsaver.io.

Get an API key
Read the docs
