Skip to content

sameerkumar18/geek-joke-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Geek-Jokes

A Flask RESTful API to get random geek jokes

forthebadge forthebadge

What is the Geek-Jokes-api?

The Geek Jokes RESTful API lets you fetch a random geeky/programming related joke for use in all sorts of applications.

Why the Geek-Jokes-api?

The Geek Jokes api is for any developer needing some random (geeky) jokes in their life or application.

URL

GET: https://geek-jokes.sameerkumar.website/api 

Usage

Just do a GET request on the API URL.

GET: https://geek-jokes.sameerkumar.website/api 

Examples

cURL

curl -X GET \ 'https://geek-jokes.sameerkumar.website/api' 

Python

import requests requests.get('https://geek-jokes.sameerkumar.website/api')

Node.js (es6)

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) });

Any browser

visit the url: https://geek-jokes.sameerkumar.website/api to get a joke. Press refresh button for more jokes.

License

MIT

Contact

Contact me here: sameer18051998@gmail.com

Releases

No releases published

Packages

No packages published

Contributors 16