Sindice Cache

Cache API calls examples:

Cache API allows you to retrieve triples from cached documents using document URI. To get triples you must specify url=URI of the document.
To get implicit triples too you must add parameter implicit=1. Example:

http://api.sindice.com/v2/cache?url=http://wordnet.rkbexplorer.com/id/word-Galway
http://api.sindice.com/v2/cache?url=http://wordnet.rkbexplorer.com/id/word-Galway&implicit=1

The result format can be selected by HTTP content negotiation:
Content negotiation examples:
  • To get results in HTML:
    curl -H "Accept: text/html" 
    "http://api.sindice.com/v2/cache?url=http://wordnet.rkbexplorer.com/id/word-Galway"
  • To get results in RDF:
    curl -H "Accept: application/rdf+xml" 
    "http://api.sindice.com/v2/cache?url=http://wordnet.rkbexplorer.com/id/word-Galway"
  • To get results in Plain text:
    curl -H "Accept: text/plain" 
    "http://api.sindice.com/v2/cache?url=http://wordnet.rkbexplorer.com/id/word-Galway"