U.S. flag

Made in the USA.

Craigslist Jobs Stats Jobble Stats

Welcome to the Web Source Proxy/API.

This tool allows you to interact with any website as if you were using the view-source component in your browser, or capture the view-source programmatically with the results returned in json format.

🚀 Visual Source Interface

Use the visual interface to inspect raw HTML.

View-Source Proxy UI

Base Endpoint

https://app.delivery.us.eu.org/viewsource.php

Quick Usage

To view a website's source code instantly, pass the url via a GET request.

Example Request:
GET ?url=https://example.com&function=view-source

* Powered by Node.js 24 Native Fetch.


Available Functions

Function Name Description Speed
proxy Visual UI for source code inspection. UI
view-source Returns the raw HTML source of the target. ULTRA FAST
text Strips HTML tags and returns only the visible text. FAST
links Extracts all <a href="..."> attributes via Regex. FAST

API Parameters

  • url: (Required) The encoded URL you want to fetch.
  • function: (Required) view-source, text, links.
  • device: (Optional) desktop or mobile to adjust User-Agent strings.

Example JSON Response

View Source Response
{
  "error": false,
  "function": "view-source",
  "url": "https://example.com",
  "data": "<!doctype html>\n<html>\n<head>..."
}