Skip to content
This repository was archived by the owner on Jul 6, 2023. It is now read-only.
Colorado Reed edited this page Sep 22, 2013 · 9 revisions

Warning: this API is under active development

Content Server API

The API for the content server is currently read-only and responds to the following requests:

GET /dependencies gets a JSON representation of the dependency graph of the supplied concept(s) (specify via the concepts or ids parameter, see examples below)

GET /concepts/<concept_name> gets a JSON representation of <concept_name>

GET /search processes a search query (specified using the q parameter, see example below) and returns a list of JSON objects for the results

Examples

obtain the full dependency graph for gibbs sampling:

GET /dependencies?concepts=gibbs_sampling

obtain the full dependency graph for gibbs sampling and indian buffet process:

GET /dependencies?concepts=gibbs_sampling&concepts=indian_buffet_process

obtain the full dependency graph for gibbs sampling and indian buffet process using their permanent ids:

GET /dependencies?ids=n4mru8iv&ids=5638xo54

obtain a all data for gibbs sampling:

GET /concepts/gibbs_sampling

search query:

GET search?q=gibbs+sampling

Clone this wiki locally