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
Base Endpoint
https://app.delivery.us.eu.org/viewsource.php
Quick Usage
To view a website's source code instantly, pass the
Example Request:
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)
desktopormobileto 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>..."
}