SEO Meta Tag Extractor
Fetches a page and extracts everything search engines and social platforms read from its head - title, meta description, canonical URL, robots directives, Open Graph and Twitter Card tags - plus the heading outline. Returns the raw values so an agent can judge them rather than being handed a score.
One page fetch plus parsing. The parse is pure CPU and negligible; the cost is the outbound request and reading the HTML.
Any HTTP client works. Replace the key with one from your dashboard.
curl -X POST https://toolkitbackend-j69m.onrender.com/api/v1/tools/seo-meta \
-H "Authorization: Bearer tb_live_<your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com"
}'Input
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
url | string | required | - | Absolute URL of the page to analyse. |
Output
| Field | Type | Description |
|---|---|---|
url | string | The page that was analysed. |
title | string | Contents of the title tag, or null when absent. |
description | string | Meta description, or null when absent. |
canonical | string | Canonical URL, or null when absent. |
robots | string | Robots meta directive, or null when absent. |
openGraph | object | Every og: property found. |
twitter | object | Every twitter: property found. |
headings | array | Heading outline as level and text pairs. |
wordCount | integer | Approximate word count of the visible body text. |
Try it
Sends a real POST /api/v1/tools/seo-meta from your browser and charges 2 credits to your account.
Sign in to run this endpoint. New accounts start with free credits.