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?format=json
Just do a GET request on the API URL.
GET: https://geek-jokes.sameerkumar.website/api?format=json
Repository | Description |
---|---|
Random. Django. Rango. | Random. Django. Rango. An introduction to using Python and Django to build a website. |
tellmejoke | VS Code Extension that tells you a joke |
Used Geek Jokes API in your project? Check out the contributing guidelines for this list and let us know. we love PRs :)
curl -X GET \
'https://geek-jokes.sameerkumar.website/api?format=json'
import requests
requests.get('https://geek-jokes.sameerkumar.website/api?format=json')
var request = require('request');
let options = {
url: 'https://geek-jokes.sameerkumar.website/api?format=json',
method: 'GET'
}
request(options, (err, response, body) => {
if(!err && response.statusCode == 200)
console.log(body)
});
visit the url: https://geek-jokes.sameerkumar.website/api?format=json to get a joke. Press refresh button for more jokes.
MIT
Contact: [email protected]
Sameer Kumar https://sameerkumar.website