Inspect a URL
curl --request GET \
--url https://metamanager.dev/inspectimport requests
url = "https://metamanager.dev/inspect"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://metamanager.dev/inspect', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://metamanager.dev/inspect",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://metamanager.dev/inspect"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://metamanager.dev/inspect")
.asString();require 'uri'
require 'net/http'
url = URI("https://metamanager.dev/inspect")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"url": "<string>",
"final_url": "<string>",
"status_code": 123,
"response_time": 123,
"document_size": 123,
"truncated": true,
"score": 50,
"metadata": {},
"image": {
"url": "<string>",
"width": 123,
"height": 123,
"alt": "<string>",
"size": 123,
"mime": "<string>",
"accessible": true,
"inspected": true,
"state": "<string>",
"declared": {
"width": 123,
"height": 123
}
},
"previews": {
"google": {
"title": "<string>",
"description": "<string>",
"image": "<string>",
"domain": "<string>",
"source": {},
"approximate": true,
"basis": "<string>",
"favicon": "<string>"
},
"x": {
"title": "<string>",
"description": "<string>",
"image": "<string>",
"domain": "<string>",
"source": {},
"approximate": true,
"basis": "<string>",
"favicon": "<string>"
},
"facebook": {
"title": "<string>",
"description": "<string>",
"image": "<string>",
"domain": "<string>",
"source": {},
"approximate": true,
"basis": "<string>",
"favicon": "<string>"
},
"linkedin": {
"title": "<string>",
"description": "<string>",
"image": "<string>",
"domain": "<string>",
"source": {},
"approximate": true,
"basis": "<string>",
"favicon": "<string>"
},
"discord": {
"title": "<string>",
"description": "<string>",
"image": "<string>",
"domain": "<string>",
"source": {},
"approximate": true,
"basis": "<string>",
"favicon": "<string>"
},
"whatsapp": {
"title": "<string>",
"description": "<string>",
"image": "<string>",
"domain": "<string>",
"source": {},
"approximate": true,
"basis": "<string>",
"favicon": "<string>"
},
"slack": {
"title": "<string>",
"description": "<string>",
"image": "<string>",
"domain": "<string>",
"source": {},
"approximate": true,
"basis": "<string>",
"favicon": "<string>"
},
"telegram": {
"title": "<string>",
"description": "<string>",
"image": "<string>",
"domain": "<string>",
"source": {},
"approximate": true,
"basis": "<string>",
"favicon": "<string>"
}
},
"issues": [
{
"code": "missing_og_image",
"severity": "error",
"importance": "required",
"title": "<string>",
"description": "<string>",
"fix": {
"html": "<string>",
"laravel": "<string>"
}
}
],
"redirects": [
{
"url": "<string>",
"status": 123
}
]
}{
"error": "<string>",
"message": "<string>",
"url": "<string>",
"upstream_status": 123,
"retry_after": 123
}{
"error": "<string>",
"message": "<string>",
"url": "<string>",
"upstream_status": 123,
"retry_after": 123
}{
"error": "<string>",
"message": "<string>",
"url": "<string>",
"upstream_status": 123,
"retry_after": 123
}{
"error": "<string>",
"message": "<string>",
"url": "<string>",
"upstream_status": 123,
"retry_after": 123
}{
"error": "<string>",
"message": "<string>",
"url": "<string>",
"upstream_status": 123,
"retry_after": 123
}{
"error": "<string>",
"message": "<string>",
"url": "<string>",
"upstream_status": 123,
"retry_after": 123
}API Reference
Inspect a URL
Fetch a page, read its metadata, resolve its previews and report its issues.
GET
/
inspect
Inspect a URL
curl --request GET \
--url https://metamanager.dev/inspectimport requests
url = "https://metamanager.dev/inspect"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://metamanager.dev/inspect', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://metamanager.dev/inspect",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://metamanager.dev/inspect"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://metamanager.dev/inspect")
.asString();require 'uri'
require 'net/http'
url = URI("https://metamanager.dev/inspect")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"url": "<string>",
"final_url": "<string>",
"status_code": 123,
"response_time": 123,
"document_size": 123,
"truncated": true,
"score": 50,
"metadata": {},
"image": {
"url": "<string>",
"width": 123,
"height": 123,
"alt": "<string>",
"size": 123,
"mime": "<string>",
"accessible": true,
"inspected": true,
"state": "<string>",
"declared": {
"width": 123,
"height": 123
}
},
"previews": {
"google": {
"title": "<string>",
"description": "<string>",
"image": "<string>",
"domain": "<string>",
"source": {},
"approximate": true,
"basis": "<string>",
"favicon": "<string>"
},
"x": {
"title": "<string>",
"description": "<string>",
"image": "<string>",
"domain": "<string>",
"source": {},
"approximate": true,
"basis": "<string>",
"favicon": "<string>"
},
"facebook": {
"title": "<string>",
"description": "<string>",
"image": "<string>",
"domain": "<string>",
"source": {},
"approximate": true,
"basis": "<string>",
"favicon": "<string>"
},
"linkedin": {
"title": "<string>",
"description": "<string>",
"image": "<string>",
"domain": "<string>",
"source": {},
"approximate": true,
"basis": "<string>",
"favicon": "<string>"
},
"discord": {
"title": "<string>",
"description": "<string>",
"image": "<string>",
"domain": "<string>",
"source": {},
"approximate": true,
"basis": "<string>",
"favicon": "<string>"
},
"whatsapp": {
"title": "<string>",
"description": "<string>",
"image": "<string>",
"domain": "<string>",
"source": {},
"approximate": true,
"basis": "<string>",
"favicon": "<string>"
},
"slack": {
"title": "<string>",
"description": "<string>",
"image": "<string>",
"domain": "<string>",
"source": {},
"approximate": true,
"basis": "<string>",
"favicon": "<string>"
},
"telegram": {
"title": "<string>",
"description": "<string>",
"image": "<string>",
"domain": "<string>",
"source": {},
"approximate": true,
"basis": "<string>",
"favicon": "<string>"
}
},
"issues": [
{
"code": "missing_og_image",
"severity": "error",
"importance": "required",
"title": "<string>",
"description": "<string>",
"fix": {
"html": "<string>",
"laravel": "<string>"
}
}
],
"redirects": [
{
"url": "<string>",
"status": 123
}
]
}{
"error": "<string>",
"message": "<string>",
"url": "<string>",
"upstream_status": 123,
"retry_after": 123
}{
"error": "<string>",
"message": "<string>",
"url": "<string>",
"upstream_status": 123,
"retry_after": 123
}{
"error": "<string>",
"message": "<string>",
"url": "<string>",
"upstream_status": 123,
"retry_after": 123
}{
"error": "<string>",
"message": "<string>",
"url": "<string>",
"upstream_status": 123,
"retry_after": 123
}{
"error": "<string>",
"message": "<string>",
"url": "<string>",
"upstream_status": 123,
"retry_after": 123
}{
"error": "<string>",
"message": "<string>",
"url": "<string>",
"upstream_status": 123,
"retry_after": 123
}Query Parameters
The page to check. http or https, publicly resolvable.
Include a paste-ready AI fix prompt for this framework. Applied after the cache, so switching costs nothing.
Available options:
html, laravel, next, nuxt, other Bypass the 15-minute report cache.
Available options:
1 Response
A report.
Milliseconds to fetch the page.
Weighted by consequence, not by counting tags.
Required range:
0 <= x <= 100Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
⌘I