To make a request to fetch a single reference, you send a GET request to the endpoint, and you will get a JSON response. Here are the request details
Request URL: hub.amcow.africa/api/v1/reference/{id}
where {id}
is the ID of the reference you want to fetch. The data type of {id}
is integer
, and is Mandatory to get a valid response from the API
Request Type: GET
JSON Response
{
"data": {
"author": "UN Water Africa",
"abstract": "This is a description ",
"file": "http://www.grida.no/resources/5774",
"id": 1,
"title": "African Water Vision 2025",
"type": "Report"
}
}