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