AI Joke -

Authentication:

An API Key is required and is provide by RapidAPI

API response format:

All API endpoints follow their respective browser URLs, but we adjust the response formatting to be more suited for an API based on the provided HTTP header.

Accepted Accept headers:

  • application/json - JSON response (default response format)

Endpoint:

GET /joke/ai/{jokeTopic}

Fetching a random as joke as JSON:


{
  "success": true,
  "body": [
      {
          "setup": "Why did the cow go to outer space?",
          "punchline": "Because it wanted to see the moooon!"
      }
  ]
}