Fetchmeta¶
Fetchmeta is a URL metadata extraction API. Send it any HTTP or HTTPS URL and it returns structured metadata — page title, description, Open Graph tags, canonical URL, and favicon — as clean JSON.
It's built for developers who need reliable link metadata without running their own scraping infrastructure: link previews, content ingestion pipelines, SEO tooling, social card generation, and anywhere you need to know what a URL represents.
What you get¶
A single request returns:
- Title — the page's
<title> - Description — the meta description
- Open Graph tags —
og:title,og:description,og:image,og:url - Canonical URL — the page's declared canonical link
- Favicon URL — resolved from the page's link tags or the domain default
Quick example¶
curl "https://fetchmeta.zindle.com.au/v1/fetch?url=https://example.com" \
-H "X-API-Key: fm_live_your_key_here"
{
"title": "Example Domain",
"description": null,
"og_title": null,
"og_description": null,
"og_image": null,
"og_url": null,
"canonical_url": null,
"favicon_url": "https://example.com/favicon.ico"
}
Getting started¶
- Get an API key from the Zindle dashboard
- Follow the Quickstart to make your first request
- Browse the API Reference for full endpoint details
Fetchmeta is a Zindle service. Your Zindle account and API keys are managed from the same dashboard.