W
Stenly API/Docs/Web Fetcher
KEMBALI
FETCHER NODE

Web Fetcher Node

Tool untuk mengunduh website, asset web, atau file lainnya. Menyimpan file secara ephemeral, dan mengembalikan file buffer dalam Base64 (maks 5MB).

GET
https://stenly.org/api/downloader/web-fetcher
Live

Query Parameters

ParameterTypeDescription
url*
StringURL file atau webpage yang ingin diunduh.

Full Integration Guide

1
Siapkan Request REST

Lakukan HTTP GET request ke endpoint dengan mengirim parameter `url`.

Terminal / Bash (cURL - GET)
curl "https://stenly.org/api/downloader/web-fetcher?url=https://stenly.org"
Node.js (Fetch)
const res = await fetch("https://stenly.org/api/downloader/web-fetcher?url=" + encodeURIComponent("https://stenly.org"));
const data = await res.json();
console.log(data);
tty1
# TARGET URL
https://stenly.org/api/downloader/web-fetcher?url=https://stenly.org
# QUERY PARAMS
{
  "url": "https://stenly.org"
}
URL