Our animals endpoint
Here is a list of how our /animal
endpoint works and the types of responses you'll get.
Want more animals? Join the discord to give suggestions
GET /animal
Example Response:
URL
https://api.some-random-api.com/animal
Response
{
"endpoints": [
"/animal/fox",
"/animal/cat",
"/animal/bird",
...
]
}
GET /animal/:type
Example Response:
URL
https://api.some-random-api.com/animal/bird
Response
{
"image": "https://i.imgur.com/U5blHCt.jpeg",
"fact": "There are more fake flamingos on Earth than real ones."
}