0

What is the best way to get a list of the names of all video games in Freebase? Any idea?

Thanks!

1 Answers1

2

The Freebase topic type for game is cvg/computer_videogame : http://www.freebase.com/cvg/computer_videogame?schema=

So you can list video games like this: https://www.googleapis.com/freebase/v1/search?indent=true&filter=%28any+type%3A%2Fcvg%2Fcomputer_videogame%29

Devnook
  • 1,103
  • 7
  • 9
  • Thanks but this lists only a few games. How can I get all video games in FreeBase? – user2957386 Nov 30 '13 at 16:21
  • By default freebase returns 20 results. Use &limit=100 in your query to retrieve more, e.g. a 100. You can use combination of limit and cursor for pagination if your single request get too big. – Devnook Dec 03 '13 at 10:56
  • How can i get a list of video games and their developers only? – Saber Oct 26 '14 at 15:31