Our images endpoint
Here is a list of how our /img
endpoint works and the types of responses you'll get.
Want more images? Join the discord to give suggestions
GET /img
Example Response:
URL
https://api.some-random-api.com/img
Response
{
"endpoints": [
"/img/fox",
"/img/cat",
"/img/birb",
"/img/panda",
"/img/red_panda",
"/img/pikachu",
"/img/racoon",
"/img/koala",
"/img/kangaroo",
"/img/whale",
"/img/dog",
"/img/bird"
]
}
GET /img/:type
Example Response:
URL
https://api.some-random-api.com/img/bird
Response
{
"link": "https://i.imgur.com/U5blHCt.jpeg"
}