Ponarize API offers a convenient solution for web categorization, making it easy for developers to classify and organize web content based on predefined categories. With Ponarize API, developers can integrate web categorization functionality into their applications, websites, or services with minimal effort.
import requests
url = "https://www.ponarize.com/api/check/domain"
payload = "{\"domain\":\"plesk.com\"}\n"
headers = {
'Accept': "application/json",
'Content-Type': "application/json",
'Authorization': "YOUR-API-KEY"
}
response = requests.request("POST", url, data=payload, headers=headers)
print(response.text)
{ "status": "success", "message": [ { "domain": "plesk.com", "category": "Business", "category2": "Online Shopping", "category3": "Software/Hardware", "category4": "Internet Services", "category5": "-", "risk": "Minimal Risk", "domain_age": "1999-06-13T00", "domain_nameserver": ["gene.ns.cloudflare.com","jeff.ns.cloudflare.com"], "socialLinks": { "linkedin": "https://www.linkedin.com/company/plesk", "facebook": "https://www.facebook.com/Plesk", "twitter": "https://twitter.com/Plesk", "instagram": "null", "youtube": "https://www.youtube.com/channel/UCeU-_6YHGQFcVSHLbEXLNlA" } } ] }