
MetaThief - A Tool for Quickly Getting Website Meta Information
Open Source
SEOMetadataAPIDeveloper
Just enter a link to quickly get all meta information of a website, also supports API access.
MetaThief
Enter a URL, instantly get all website meta information, with API support!
What is this?
MetaThief is a fast tool for retrieving website meta information. Just enter a URL to extract all metadata, with an API interface for easy integration into other applications.
Core Features
- Metadata Retrieval - Supports basic metadata and Open Graph tags
- Icon Extraction - Get website favicon, icons in multiple sizes
- robots.txt Crawling - One-click access to site crawler rules
- API Support - RESTful API for programmatic access
Supported Meta Tags
| Category | Tags |
|---|---|
| Basic | language, charset, viewport, title, description, keywords, author, generator |
| Links | favicon, canonical, icons, theme |
| Open Graph | ogUrl, ogTitle, ogSiteName, ogDescription, ogImage, ogImageAlt, ogType |
| twitterSite, twitterCard, twitterTitle, twitterCreator, twitterDescription, twitterImage | |
| Other | robots |
What Problem Does It Solve?
When organizing navigation sites, analyzing competitor websites, or doing SEO optimization, manually searching for meta information in source code is inefficient. MetaThief automatically extracts all metadata, saving time and effort.
API Usage
Get all metadata:
GET /api/meta?url=https://example.com
Get specific meta tags:
GET /api/meta?url=https://example.com&meta=title,description,favicon
Response example:
{
"title": "Example Website",
"description": "Website description",
"favicon": "https://example.com/favicon.ico",
"icons": [
"https://example.com/favicon.ico",
"https://example.com/apple-touch-icon.png"
]
}