This API provides an easy-to-use REST web interface to query/retrieve data from the UniBind database. The API comes with a human browsable interface and also a programmatic interface which return the results in different formats, including json, jsonp, yaml, bed, and also api for a browsable interface.
GET /api/v1/collections?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 2,
    "results": [
        {
            "name": "Permissive",
            "url": "https://unibind.uio.no/api/v1/datasets?collection=Permissive"
        },
        {
            "name": "Robust",
            "url": "https://unibind.uio.no/api/v1/datasets?collection=Robust"
        }
    ]
}