๐Ÿช„ SEO Meta Generator API

AI-powered metadata from any URL or HTML โ€” title, description, OpenGraph, Twitter cards, JSON-LD schema. Ready to paste into your <head>.

โšก ~2s response ๐ŸŒ Any language ๐Ÿง  Gemini 2.5 Flash ๐Ÿ“‹ Pre-built HTML tags

๐Ÿš€ Try live demo ๐Ÿ“– OpenAPI spec

Why this API

โšก Save 30 minutes per post. No more manually crafting title + meta + OG + Twitter + JSON-LD. Send URL, get all 5 in one call.
๐ŸŽฏ Optimized for CTR. Gemini 2.5 Flash trained on millions of pages โ€” understands what makes a title clickable vs keyword-stuffed.
๐Ÿ“‹ Ready-to-paste HTML. We return structured JSON and a pre-built html_tags string you can drop straight into your <head>.
๐ŸŒ Multilingual. Auto-detects language (works great with Thai, Japanese, Spanish, etc.) or specify explicitly.

Live Demo

Result:

Quick Start

Authenticate

Add your key in the X-Api-Key header. Demo key: demo-key-seo-meta (100 calls/day, no signup).

POST /meta with URL

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/"}'

Response

{
  "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=\"...\">..."
}

POST /meta with HTML or raw 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
  }'

Options

ParamTypeDefaultDescription
urlstringโ€”URL to fetch & analyze (choose one of url/html/content)
htmlstringโ€”Full HTML โ€” we scope to <main>/<article> if present
contentstringโ€”Raw text (no HTML parsing)
languagestringautoauto | en | th | etc.
tonestringprofessionalprofessional | casual | technical | marketing
maxTitleCharsint60Title length cap
maxDescCharsint160Description length cap
siteNamestringโ€”Used in og:site_name
includeSchemabooltrueInclude JSON-LD schema.org Article
buildTagsbooltrueReturn pre-built html_tags string

Pricing

Free

$0/mo

Basic

$9/mo

Pro

$29/mo

Ultra

$99/mo

Use Cases


Built by HubAI Asia ยท Powered by Gemini 2.5 Flash via OpenRouter