Web Links Extractor
Extract any host/web pages all links serially with this API.
Endpoint
GET
https://api.lmnx9.shop/check-host/link.php?host=
Code Examples
cURL
curl -X GET "https://api.lmnx9.shop/check-host/link.php?host=" -H "Content-Type: application/json"JavaScript
fetch("https://api.lmnx9.shop/check-host/link.php?host=")
.then(function(r){return r.json()})
.then(function(d){console.log(d)});Python
import requests
r = requests.get("https://api.lmnx9.shop/check-host/link.php?host=")
print(r.json())PHP
<?php
$d = file_get_contents("https://api.lmnx9.shop/check-host/link.php?host=");
print_r(json_decode($d, true));Example Response
{
"status": true,
"type": "link",
"host": "google.com",
"count": 4,
"links": [
"https://www.google.com/intl/en/about/products",
"https://mail.google.com/mail/&ogbl",
"https://www.google.com/imghp?hl=en&ogbl",
"https://accounts.google.com/ServiceLogin?hl=en&passive=true&continue=https://www.google.com/%3Fgws_rd%3Dssl&ec=GAZAmgQ"
],
"developer": "DARK LMNx9",
"telegram": "t.me/x_LMNx9"
}