AI-powered metadata from any URL or HTML โ title, description, OpenGraph, Twitter cards, JSON-LD schema. Ready to paste into your <head>.
๐ Try live demo ๐ OpenAPI spec
html_tags string you can drop straight into your <head>.Add your key in the X-Api-Key header. Demo key: demo-key-seo-meta (100 calls/day, no signup).
curl -X POST https://hubaiasia.com/seo-meta-api/meta \
-H "X-Api-Key: demo-key-seo-meta" \
-H "Content-Type: application/json" \
-d '{"url": "https://hubaiasia.com/the-ultimate-ai-tools-guide-2026/"}'
{
"ok": true,
"meta": {
"language": "en",
"title": "The Ultimate AI Tools Guide 2026 โ Top 10 Picks",
"description": "Compare the best AI tools for developers in 2026. Real pricing, real use cases, real workflows.",
"keywords": ["ai tools", "gemini", "claude", "cursor", "dev tools 2026"],
"og": {
"title": "The Ultimate AI Tools Guide 2026",
"description": "Top 10 AI tools every developer should know in 2026.",
"type": "article",
"site_name": "HubAI Asia"
},
"twitter": {
"card": "summary_large_image",
"title": "The Ultimate AI Tools Guide 2026",
"description": "Top 10 AI tools every developer should know."
},
"schema": {
"@context": "https://schema.org",
"@type": "Article",
"headline": "The Ultimate AI Tools Guide 2026",
"description": "...",
"inLanguage": "en"
}
},
"html_tags": "<title>The Ultimate AI Tools Guide 2026 โ Top 10 Picks</title>\n<meta name=\"description\" content=\"...\">..."
}
curl -X POST https://hubaiasia.com/seo-meta-api/meta \
-H "X-Api-Key: demo-key-seo-meta" \
-H "Content-Type: application/json" \
-d '{
"html": "<article>...</article>",
"language": "th",
"siteName": "AI Dev Thai",
"maxTitleChars": 70
}'
| Param | Type | Default | Description |
|---|---|---|---|
url | string | โ | URL to fetch & analyze (choose one of url/html/content) |
html | string | โ | Full HTML โ we scope to <main>/<article> if present |
content | string | โ | Raw text (no HTML parsing) |
language | string | auto | auto | en | th | etc. |
tone | string | professional | professional | casual | technical | marketing |
maxTitleChars | int | 60 | Title length cap |
maxDescChars | int | 160 | Description length cap |
siteName | string | โ | Used in og:site_name |
includeSchema | bool | true | Include JSON-LD schema.org Article |
buildTags | bool | true | Return pre-built html_tags string |
Built by HubAI Asia ยท Powered by Gemini 2.5 Flash via OpenRouter