The Geek Jokes RESTful API lets you fetch a random geeky/programming related joke for use in all sorts of applications.
The Geek Jokes api is for any developer needing some random (geeky) jokes in their life or application.
GET: https://geek-jokes.sameerkumar.website/api Just do a GET request on the API URL.
GET: https://geek-jokes.sameerkumar.website/api curl -X GET \ 'https://geek-jokes.sameerkumar.website/api' import requests requests.get('https://geek-jokes.sameerkumar.website/api')var request = require('request'); let options = { url: 'https://geek-jokes.sameerkumar.website/api', method: 'GET' } request(options, (err, response, body) => { if(!err && response.statusCode == 200) console.log(body) });visit the url: https://geek-jokes.sameerkumar.website/api to get a joke. Press refresh button for more jokes.
MIT
Contact me here: sameer18051998@gmail.com