0

I am trying to use the freebase API to get some data on films and actors. What I have is millions of Actors Imdb Ids which I would like to get info on. (such info includes: FreeBase Id, Wiki Id, Actor's Biography and Actor's Image). How can I do that please?

4

1 回答 1

1

This query will get you all actors with IMDB IDs in Freebase:

[{
  "id": null,
  "name": null,
  "key": [{
    "namespace": {
      "id": "/authority/imdb/name"
    },
    "value": null
  }]
}]

You can extend it with any other information that you need (but note that Freebase isn't going to have complete bios or a comprehensive set of pictures)

于 2013-07-15T18:53:20.680 回答