FREE API
Web Links Extractor
Extract any host/web pages all links serially with this API.
GET
https://api.lmnx9.shop/check-host/link.php?host=
Code Examples
curl -X GET "https://api.lmnx9.shop/check-host/link.php?host=" -H "Content-Type: application/json"
fetch("https://api.lmnx9.shop/check-host/link.php?host=")
.then(function(r) { return r.json(); })
.then(function(data) { console.log(data); });import requests
r = requests.get("https://api.lmnx9.shop/check-host/link.php?host=")
print(r.json())<?php
$data = file_get_contents("https://api.lmnx9.shop/check-host/link.php?host=");
print_r(json_decode($data, 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"
}