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/bird",
...
]
}
GET /img/:type
Example Response:
URL
https://api.some-random-api.com/img/bird
Response
{
"link": "https://i.imgur.com/U5blHCt.jpeg"
}