{
fact: "Animal fact"
}
Status: 500 | Response type: json{
error: "API is starting up, please request again in a while"
}
Status: 429 | Response type: json{
"error": "Too many requests, please try again later."
}
const fetch = require('node-fetch')
fetch('https://some-random-api.ml/facts/bird')
.then(res => res.json())
.then(json => {
console.log(json)
});
import requests
def get_bird():
#making a GET request to the endpoint.
resp = requests.get("https://some-random-api.ml/facts/bird")
#checking if resp has a healthy status code.
if 300 > resp.status_code >= 200:
content = resp.json() #We have a dict now.
else:
content = f"Recieved a bad status code of {resp.status_code}."
print(content)
get_bird())
{
fact: "Animal fact"
}
Status: 500 | Response type: json{
error: "API is starting up, please request again in a while"
}
Status: 429 | Response type: json{
"error": "Too many requests, please try again later."
}
const fetch = require('node-fetch')
fetch('https://some-random-api.ml/facts/cat')
.then(res => res.json())
.then(json => {
console.log(json)
});
import requests
def get_cat():
#making a GET request to the endpoint.
resp = requests.get("https://some-random-api.ml/facts/cat")
#checking if resp has a healthy status code.
if 300 > resp.status_code >= 200:
content = resp.json() #We have a dict now.
else:
content = f"Recieved a bad status code of {resp.status_code}."
print(content)
get_cat())
{
fact: "Animal fact"
}
Status: 500 | Response type: json{
error: "API is starting up, please request again in a while"
}
Status: 429 | Response type: json{
"error": "Too many requests, please try again later."
}
const fetch = require('node-fetch')
fetch('https://some-random-api.ml/facts/dog')
.then(res => res.json())
.then(json => {
console.log(json)
});
import requests
def get_dog():
#making a GET request to the endpoint.
resp = requests.get("https://some-random-api.ml/facts/dog")
#checking if resp has a healthy status code.
if 300 > resp.status_code >= 200:
content = resp.json() #We have a dict now.
else:
content = f"Recieved a bad status code of {resp.status_code}."
print(content)
get_dog())
{
fact: "Animal fact"
}
Status: 500 | Response type: json{
error: "API is starting up, please request again in a while"
}
Status: 429 | Response type: json{
"error": "Too many requests, please try again later."
}
const fetch = require('node-fetch')
fetch('https://some-random-api.ml/facts/fox')
.then(res => res.json())
.then(json => {
console.log(json)
});
import requests
def get_fox():
#making a GET request to the endpoint.
resp = requests.get("https://some-random-api.ml/facts/fox")
#checking if resp has a healthy status code.
if 300 > resp.status_code >= 200:
content = resp.json() #We have a dict now.
else:
content = f"Recieved a bad status code of {resp.status_code}."
print(content)
get_fox())
{
fact: "Animal fact"
}
Status: 500 | Response type: json{
error: "API is starting up, please request again in a while"
}
Status: 429 | Response type: json{
"error": "Too many requests, please try again later."
}
const fetch = require('node-fetch')
fetch('https://some-random-api.ml/facts/koala')
.then(res => res.json())
.then(json => {
console.log(json)
});
import requests
def get_koala():
#making a GET request to the endpoint.
resp = requests.get("https://some-random-api.ml/facts/koala")
#checking if resp has a healthy status code.
if 300 > resp.status_code >= 200:
content = resp.json() #We have a dict now.
else:
content = f"Recieved a bad status code of {resp.status_code}."
print(content)
get_koala())
{
fact: "Animal fact"
}
Status: 500 | Response type: json{
error: "API is starting up, please request again in a while"
}
Status: 429 | Response type: json{
"error": "Too many requests, please try again later."
}
const fetch = require('node-fetch')
fetch('https://some-random-api.ml/facts/panda')
.then(res => res.json())
.then(json => {
console.log(json)
});
import requests
def get_panda():
#making a GET request to the endpoint.
resp = requests.get("https://some-random-api.ml/facts/panda")
#checking if resp has a healthy status code.
if 300 > resp.status_code >= 200:
content = resp.json() #We have a dict now.
else:
content = f"Recieved a bad status code of {resp.status_code}."
print(content)
get_panda())