"Thanks for the catch! It looks like a couple characters were backspaced over and is now corrected..."
Freebase doesn't store wikipedia articles. Freebase provides the wikipedia key so that you can get the article from wikipedia.
For example, /topic/en/radiohead has property "/wikipedia/topic/en_id" : "38252"that fetches:
http://en.wikipedia.org/wiki/index.html?curid=38252
Wikipedia has several ways to get their full text:
http://en.wikipedia.org/wiki/index.html?curid=38252&action=render
More options are available via their API:
http://en.wikipedia.org/w/api.php
Note that you'll need a way to convert the wiki formatting to valid HTML.
Note also that not all Freebase topics have an equivalent Wikipedia article (Freebase topics should e considered a superset of Wikipedia articles) so make sure your code can handle a case where there is no wikipedia article. This query can be used to see if a Freebase article exists:
{
"/common/topic/alias" : [],
"/common/topic/article" : {
"id" : null
},
"id" : "/topic/en/radiohead",
}
See also the related topic, Retrieve the Wikipedia URL for an object with a GUID.
Search Help Center
- Building Bases
- Creating Schemas
-
Developing Applications
- An Introduction to Freebase Application Development
- Playing in the Sandbox
- Freebase Programming Libraries and Tools
- Data Dump FAQ
- Using the Query Editor
- The Complete Metaweb Query Language (MQL) Reference Guide
- MQL Cheatsheet
-
The MQL Cookbook
- Get data as of a specific time
- Read properties of a type
- values vs name/id
- Incoming links
- Any topics with a specific date
- Wikipedia article text
- Retrieve the Wikipedia URL for an object with a GUID
- Find distinct co-types
- Creating relationships with the connect directive
- Mark for deletion
- Sort by index and timestamp
- Traversing Through Non-Reversed Properties
- Combine queries
- Perform transitive queries
- Freebase API Reference
- Application Developer Tips
- The Acre Hosted Development Environment
- Introduction to the Metaweb Javascript Template Language (MJT)
- Freebase Community