views:

441

answers:

1
+3  A: 

The images and topic summaries are stored separately in the content store and are accessible via another web service API.

For example, Bill Gates' image can be accessed like this:

http://www.freebase.com/api/trans/raw/guid/9202a8c04000641f8000000004fb4c01

Similarly, the GUID for the topic summary can be found by replacing /common/topic/image with /common/topic/article in your query. The results can be accessed again like this:

http://www.freebase.com/api/trans/raw/guid/9202a8c04000641f8000000008bfed35

You can read more about the content store here.

narphorium
funny, I aluded to the content store in my question (removed in edit cause your answer is better). But I thought it was only for the images. I ended up testing for the actual article/content and found that it also was returned but your answer describes it better than I did. Thanks!
spoon16