Tools

Meta Tag Extractor

Extract meta tags and header information from a webpage.

GET /v1/tools/meta

https://api.cludz.net/v1/tools/meta

Extract title, description, keywords, Open Graph tags, and headers from a URL.

Query Parameters:

ParameterRequiredDescriptionType
urlYesThe URL of the page to analyze.string

Example

curl "https://api.cludz.net/v1/tools/meta?url=https://github.com" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

{
  "statusCode": 200,
  "statusMessage": "OK",
  "message": "Meta info retrieved",
  "data": {
    "title": "GitHub: Let's build from here",
    "description": "GitHub is where over 100 million developers shape the future of software...",
    "keywords": "git, github, ...",
    "og": {
      "title": "GitHub: Let's build from here",
      "description": "GitHub is where...",
      "image": "https://github.githubassets.com/..."
    },
    "headers": {},
    "linksConfig": [
      { "url": "...", "status": 200, "ok": true }
    ]
  }
}
Built with 💖 by Miza • © 2026 - Powered by Nuxt