Specifically, I do not know of any external service that provides this.
But the Open Calais API is certainly one of the industry standards for content/topic identification.
There is a good discussion on this here : Zemanta/Open Calais, how do they do that
There are usually three steps :
1) Go to the URL and denormalize it (remove extra parameters etc..)
2) Crawl the text of the URL.
3) Use some kind of heuristic to categorize the text into topics.
Now , depending on the topic resolution, you are going to often customize step 3. For generic topics, you can simply remove all the "extra" stuff at the end of the domain name, and simply put the domain name into a topic cluster (For example www.newyorktimes.com/news/..../ would reduce to www.newyorktimes.com, and the base url would have topics "news","politics","current events", etc....
But, For more specific topic clustering, you may have to crawl the exact URL and analyze the text of the specific URL, rather than the base.
You will have to implement some kind of caching here - because ultimately, crawling and topic estimation of a URL is a costly process, and results can be reused rather than reclassified over and over again.