ZioMark's HUB | API Documentation
DiscordAbout Me
  • 🔳Introduction
    • 🔐Authentication
  • 🔲GET Endpoints
    • ▫️Dec to Hex
    • ▫️Hex to Dec
    • ▫️Timetamp to Date
    • ▫️CFX
    • ▫️Date
    • ▫️Date & Time Formatter
    • ▫️Text over Image
    • ▫️Image over Image
    • ▫️Weather
    • ▫️Translate
    • ▫️Convert Currency
    • ▫️Geolocation
    • ▫️QR Code Generator
    • ▫️Image Format Converter
    • ▫️Key Generator
    • 🌐Bored
    • ▫️BMI Calculator
    • ▫️VAT Calculator
    • ▫️SEO Analyzer
    • ▫️Local Time
    • ▫️Discount Calculator
    • ▫️Discount Discover
  • 🔲POST Endpoints
    • ▫️HTML to PDF
    • ▫️Loan Calculator
    • ▫️Excel to CSV
Powered by GitBook
On this page
  • /seo
  • Query Parameters
  • Response
  1. GET Endpoints

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

Parameter
Type
Description

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"
}
PreviousVAT CalculatorNextLocal Time

Last updated 1 year ago

🔲
▫️