I'm looking for some callable way to get information about famnous people and celebrities. Given a string, I'd like to determine if it's the name of a famous person, and if so, if they're alive and perhaps what category they fall into (e.g. Actor, Musician, Athlete).

Does anyone know of any publically available APIs to do such a thing? The best I can come up with is Wikipedia, but it's pretty problematic because much of the info must be parsed, and isn't in a reliable and predictable format.

I'd also like to be able to offer suggestions for possible names when the initial search turns up nothing (since the strings will be from people and may contain misspellings).

link|improve this question

75% accept rate
@Ancide: this is a somewhat different question, as the OP wants to do a kind of entity classification using Wikipedia. – larsmans May 3 '11 at 16:08
@larsmans Yeah, my brain's textparsing algorithm is too forgiving. It just read the tags and the only question in the text; "Does anyone know of any publically available APIs to do such a thing?" Silly brain! :) – rzetterberg May 3 '11 at 16:11
feedback

2 Answers

up vote 0 down vote accepted

Try DBpedia, the "preparsed" (RDF) version of Wikipedia. It can be queried using SPARQL. It includes much of the info in the English-language Wikipedia.

link|improve this answer
feedback

Try the Wikipedia API:

http://en.wikipedia.org/wiki/Wikipedia:Creating_a_bot#APIs%5Ffor%5Fbots

It appears there's also an API for IMDB: http://www.deanclatworthy.com/imdb/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.