▫️SEO Analyzer

/seo

This endpoint analyzes the SEO (Search Engine Optimization) aspects of a webpage specified by the provided URL. It retrieves the title, meta description, canonical URL, charset, robots meta tag, theme color, and language information. If any of the required parameters are missing, it returns a 400 error with a corresponding message. If there is an error fetching or analyzing the URL, it returns a 500 error with a message.

Query Parameters

ParameterTypeDescription

url

string

The URL of the webpage to analyze.

Response

{
  "title": {
    "content": "string",
    "length": "number"
  },
  "metaDescription": {
    "content": "string",
    "length": "number"
  },
  "canonicalURL": "string",
  "charset": "string",
  "robots": "string",
  "themeColor": "string",
  "language": "string"
}

Last updated