๐Ÿ’Singes

Get a singes image

GET https://api.night-api.com/images/animals/singes/:id

Path Parameters

NameTypeDescription

ID

Number

An image ID

Headers

NameTypeDescription

authorization*

String

Your API key

{ 
    status: 400, 
    content: 'Clรฉ invalide' 
}
const axios = require("axios");

axios.get('https://api.night-api.com/images/animals/singes', {
    headers: {
        authorization: "Your API token"
    }
})
.then(function (response) {
    console.log(response.data);
})

Last updated