Questions tagged [freebase]

Freebase was a large, Google owned, community-edited, general knowledge semantic database that could previously be accessed via a RESTful API. It was shut down in 2016.

Freebase was a large, community-edited, general knowledge semantic database that could be accessed via a RESTful API. Its core information is derived from Wikipedia, MusicBrainz, and OpenLibrary, among other sources. It retains links to those sources, as well as a large number of other sources of strong identifiers (Library of Congress, New York Times, IMDB, etc), allowing cross-referencing among the various sources.

It was originally developed by Metaweb and is now owned by Google. Data can be reused under a CC-BY attribution license.

Freebase was shutdown on May 2, 2016, although extracts of the data are available.

655 questions
0
votes
1 answer

Decipher JSON response googles topic api

I am using goggle's search api to get topics id which is used to get JSON response from topic api.The returned response looks like this { "id":"/m/01d5g", "property":{ "/amusement_parks/ride_theme/rides":{...}, …
Yogesh
  • 4,546
  • 2
  • 32
  • 41
0
votes
2 answers

Freebase python

I tried this python example from freebase and run it in my windows and ubuntu machine. http://mql.freebaseapps.com/ch04.html import sys # Command-line arguments, etc. import simplejson # JSON encoding. import urllib # URI…
Hello_World
  • 101
  • 3
  • 10
0
votes
1 answer

searching Freebase API for Actors info

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…
Gidi
  • 181
  • 1
  • 10
0
votes
1 answer

Using Google API Objective-C client to construct MQL queries (Freebase)

Let me start by saying that I am new to MQL, Freebase, and the Google APIs. I am attempting to get results from Freebase using the Google API Objective-C client, but I can't find any examples or information on using the API without generated…
Jonathan
  • 2,623
  • 3
  • 23
  • 38
0
votes
1 answer

querying freebase api from emacs

I have the following Emacs Lisp which builds up a query to Freebase. If I copy and paste the URL it generates into my browser OR a commandline curl I get the results I would expect: curl -X GET…
Joe Corneli
  • 642
  • 1
  • 6
  • 18
0
votes
1 answer

Freebase: how to query /common/document/text?

Freebase: Hi, good day for evryone. Does anybody know how to access the property /common/document/text, that you get on this freebase link? I query it like this [{ "id": "/m/015fk", "type": "/common/document", "text": null …
gines capote
  • 1,110
  • 1
  • 8
  • 12
0
votes
1 answer

freebase fields appear on web, but empty when using API

I am trying to get the notable_for field for this person, which appears on the web site http://www.freebase.com/m/01z7_f but this query returns an empty field [{ "type": "/common/topic", "notable_for": [], "mid": "/m/01z7_f", "name":…
jamborta
  • 5,130
  • 6
  • 35
  • 55
0
votes
1 answer

Conditional query in Freebase API

I am looking to extract list of tourist attractions and their city,state and country information from Freebase. The property that has location is "/location/location/containedby". There are different types for this object, "location/location" or…
0
votes
1 answer

FREEBASE Music Artist explorer

I am trying to retrieve all the interesting details related to a music artist from within FREEBASE. The details i desire are (for any particular artist, e.g. "The Police") is:- a). Each and every ALBUM they have released. b). for each ALBUM get…
Hector
  • 4,016
  • 21
  • 112
  • 211
0
votes
1 answer

Freebase: javascript, how to know the status response

I think it's supposed to be on the response.code property, but I inspect the response object in firebug and I don't find the status response code anywhere. How do I know if the response is succesfull? Thanks.
gines capote
  • 1,110
  • 1
  • 8
  • 12
0
votes
1 answer

Freebase combined query empty result set

I am trying to query freebase to get all the award winning movies that a person directed or acted in. If I run this with Steven Spielberg (who has both directed AND acted in award winning movies), it works fine: [{ "/type/object/mid": "/m/06pj8", …
jamborta
  • 5,130
  • 6
  • 35
  • 55
0
votes
2 answers

How to get topdown topics for terms?

For example the terms experience, yrs, ctc must imply the subject jobs, badge, unlocked associated with foursquare. How do I get the subject from its terms? I want to analyse less-than-formal english like emails, tweets etc. Is there a data…
Jesvin Jose
  • 22,498
  • 32
  • 109
  • 202
0
votes
1 answer

How to get the output of the Freebase topic API from offline dumps

How can we obtain the output of the Freebase topic api (used like this from the web api) from offline dumps of the id: /m/09937 ? Actually, I would like to obtain similar (if not the same) output without querying the web.
Knight
  • 223
  • 2
  • 10
0
votes
1 answer

How to get ids from Freebase given part of a name (from Freebase Offline Dumps)?

I have asked this question before here!. At that time, I was concerned on getting the output using the Google-Api which works just fine. Actually, the problem with that is running into timeouts and more importantly, querying a web-based API. I…
Knight
  • 223
  • 2
  • 10
0
votes
2 answers

Freebase API works in browser but not in PHP

This question is similar to: Freebase API call works in browser but fails with curl but no answers there. I have this URL that works in the…
TechFanDan
  • 3,329
  • 6
  • 46
  • 89