Bloom taxonomy
This endpoint returns a list of the Bloom objectives currently supported by the API.
Request
GET https://learning-objects-v2.p.rapidapi.com/bloomGET https://api.inokufu.com/learningobject/v2/bloomHeaders
Query Parameters
Code examples
curl "https://api.inokufu.com/learningobject/v2/bloom"import requests
r = requests.get('https://api.inokufu.com/learningobject/v2/bloom')
r.json()$curl = curl_init('https://api.inokufu.com/learningobject/v2/bloom');
//Download the certificate from 'https://api.inokufu.com/' to avoid SSL errors and replace 'certInokufu.cer' with the name of your downloaded file
curl_setopt($curl,CURLOPT_CAINFO,__DIR__ . DIRECTORY_SEPARATOR . 'certInokufu.cer');
$data = curl_exec($curl);
if($data===false){
var_dump(curl_error($curl));
};const type = async () => {fetch('https://api.inokufu.com/learningobject/v2/bloom' ).then(function(response) {
if(response.ok) {
response.json().then(function(json) {
const resJson = JSON.stringify(json)
return resJson;
})}})};Response
Response parameters
Parameter
Description
Response example
Last updated