arrow_back All endpoints

SEO Meta Tag Extractor

POST/api/v1/tools/seo-meta2 credits per callseometa tagsopen graphtwitter cardcanonical

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.

receipt_long
Why 2 credits?

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.

bash
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

FieldTypeRequiredDefaultDescription
urlstringrequired- Absolute URL of the page to analyse.

Output

FieldTypeDescription
urlstringThe page that was analysed.
titlestringContents of the title tag, or null when absent.
descriptionstringMeta description, or null when absent.
canonicalstringCanonical URL, or null when absent.
robotsstringRobots meta directive, or null when absent.
openGraphobjectEvery og: property found.
twitterobjectEvery twitter: property found.
headingsarrayHeading outline as level and text pairs.
wordCountintegerApproximate 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.