I need a service that retrieves the title from a webpage and returns from json. I would not like to analyze a web page or waste extra CPU cycles. those. the call should be something like this:
curl http://api.someservice.com/fetch?url=google.com&element=title&out=json
Reply from api:
{
response: {
title: "Google"
source: "google.com"
}
status: "success"
}
Any hints would be much appreciated
source
share