GET /v1/tools/metahttps://api.cludz.net/v1/tools/meta
Extract title, description, keywords, Open Graph tags, and headers from a URL.
Query Parameters:
| Parameter | Required | Description | Type |
|---|---|---|---|
url | Yes | The URL of the page to analyze. | string |
curl "https://api.cludz.net/v1/tools/meta?url=https://github.com" \
-H "Authorization: Bearer YOUR_API_KEY"
const res = await fetch('https://api.cludz.net/v1/tools/meta?url=https://github.com', {
headers: { 'Authorization': 'Bearer YOUR_API_KEY' }
});
const data = await res.json();
const res = await fetch('https://api.cludz.net/v1/tools/meta?url=https://github.com', {
headers: { 'Authorization': 'Bearer YOUR_API_KEY' }
});
const data = await res.json();
import requests
url = "https://api.cludz.net/v1/tools/meta"
params = {"url": "https://github.com"}
headers = {"Authorization": "Bearer YOUR_API_KEY"}
response = requests.get(url, headers=headers, params=params)
data = response.json()
{
"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 }
]
}
}