Raw metadata extractor: the complete, unopinionated head inventory of a page — title, char
Raw metadata extractor: the complete, unopinionated head inventory of a page — title, charset, lang, canonical, all meta tags grouped by family (OpenGraph, Twitter, Dublin Core, named, http-equiv, itemprop), every link relation, and JSON-LD returned as parsed objects. For agents doing their own processing (head-check audits the same data; this just dumps it). ?url=
1000 (raw units)
price
9
calls / 30d
5
unique payers
2026-09-09
updated
Provider
api.webbersites.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xdd5fcEa81CA6f1EB39FEd5B973DE794293B81ba6",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"url": "https://example.com"
},
"type": "http"
},
"output": {
"example": {
"charset": "utf-8",
"counts": {
"jsonld_blocks": 1,
"links": 9,
"meta_tags": 18,
"og": 5,
"twitter": 4
},
"jsonld": [
{
"@type": "Organization"
}
],
"lang": "en",
"links": {
"canonical": [
"https://example.com/"
],
"icon": [
{
"href": "/favicon.ico",
"sizes": "32x32"
}
]
},
"opengraph": {
"image": "https://example.com/og.png",
"title": "Example"
},
"title": "Example"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"url": {
"description": "Public URL to extract metadata from",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"counts": {
"type": "object"
},
"jsonld": {
"type": "array"
},
"links": {
"type": "object"
},
"meta": {
"type": "object"
},
"opengraph": {
"type": "object"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.webbersites.com/api/seo/metadata" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.webbersites.com/api/seo/metadata");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.webbersites.com/api/seo/metadata")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3689.json, and this resource appears in /discovery/resources and /discovery/search.