😀Joke API

Just a simple jokes API for your entertainment

Here a simple little joke endpoint that I have created for your fun and entertainment

Random Joke

This will return a random joke from the collection.

Returns a random joke.

GET https://api.mcjoe21.com/v1/joke/random

Daily Joke

This will return the joke of the day.

Returns the daily joke.

GET https://api.mcjoe21.com/v1/joke/daily

Here, we present a comprehensive example to provide a detailed insight into the type of response you can anticipate from the query endpoint, specifically for either of the endpoints outlined in the aforementioned options.

{
  "status": "200",
  "data": {
    "id": number,
    "text": text
  }
}

Last updated

Was this helpful?