CrawlForge
Basic Tool1 credit

extract_metadata

Extract comprehensive page metadata including title, description, OpenGraph tags, Twitter Card data, and SEO information.

Use Cases

SEO Analysis

Analyze page titles, descriptions, and keywords for optimization

Social Media Preview Data

Get OpenGraph and Twitter Card data for rich social previews

Content Categorization

Use metadata to classify and organize web content

Link Preview Generation

Build rich link previews with titles, images, and descriptions

Endpoint

POST/api/v1/tools/extract_metadata
Auth Required
2 req/s on Free plan
1 credit

Parameters

NameTypeRequiredDefaultDescription
url
stringRequired-
URL to extract metadata from
Example: https://example.com/article

Request Examples

cURL

terminalBash

TypeScript

extractMetadata.tsTypescript

Response Example

200 OK195ms
{
"success": true,
"data": {
"url": "https://example.com/article",
"title": "Example Article - Best Practices Guide",
"description": "Learn the best practices for web development in 2024",
"keywords": "web development, best practices, tutorial",
"language": "en",
"canonical": "https://example.com/article",
"og": {
"title": "Example Article - Best Practices Guide",
"description": "Learn the best practices for web development",
"image": "https://example.com/og-image.jpg",
"url": "https://example.com/article",
"type": "article",
"site_name": "Example Site"
},
"twitter": {
"card": "summary_large_image",
"title": "Example Article - Best Practices Guide",
"description": "Learn the best practices for web development",
"image": "https://example.com/twitter-image.jpg",
"site": "@examplesite"
}
},
"credits_used": 1,
"credits_remaining": 999,
"processing_time": 195
}
Field Descriptions
data.titlePage title from <title> tag
data.descriptionMeta description
data.ogOpenGraph tags for social media sharing
data.twitterTwitter Card tags for Twitter previews
data.canonicalCanonical URL of the page

Related Tools