Endpoints
Facts

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/cat",
    "/facts/fox",
    "/facts/birb",
    "/facts/panda",
    "/facts/koala",
    "/facts/kangaroo",
    "/facts/racoon",
    "/facts/giraffe",
    "/facts/whale",
    "/facts/elephant",
    "/facts/dog",
    "/facts/bird",
    "/facts/red_panda"
    ]
  ]
}

GET /facts/:type

Example Response:

URL
https://api.some-random-api.com/facts/bird
Response
{
  "fact": "There are more fake flamingos on Earth than real ones."
}