Links
🦘

Kangaroo

get
https://api.night-api.com/
images/animals/kangaroo/:id
Get a kangaroo image
const axios = require("axios");
axios.get('https://api.night-api.com/images/animals/kangaroo', {
headers: {
authorization: "Your API token"
}
})
.then(function (response) {
console.log(response.data);
})
Last modified 10mo ago