agent-tools.net /metadata
Fetch a URL server-side and return its OpenGraph, Twitter Card, canonical URL, favicon, and JSON-LD — page metadata without downloading and parsing the full HTML yourself.
Documentation
GET /metadata. Fetch a URL server-side and return its OpenGraph, Twitter Card, canonical URL, favicon, and JSON-LD — page metadata without downloading and parsing the full HTML yourself. Parameters: url — Absolute http(s) URL to fetch.
Request & response
GET https://agent-tools.net/metadataParameters
urlrequired — Absolute http(s) URL to fetch.
Response
{
"url": "https://example.com/",
"title": "Example Domain",
"description": "...",
"canonical": "https://example.com/",
"favicon": "https://example.com/favicon.ico",
"open_graph": {
"title": "Example Domain",
"image": "https://example.com/og.png"
},
"twitter": {
"card": "summary"
},
"json_ld": []
} Sample data from GET /directory/official-metadata/demo — not a live call, nothing was paid.
Listed 2026-08-26