Popularity
2.2
Stable
Activity
0.0
Stable
92
6
49

Description

The Geek Jokes RESTful API lets you fetch a random geeky/programming related joke for use in all sorts of applications. Free and Open source, No Auth REST API.

Programming language: Python
License: MIT License
Tags: RESTful API     API     WWW     Joke     Geek-joke    

Geek-Jokes API alternatives and similar packages

Based on the "RESTful API" category.
Alternatively, view Geek-Jokes API alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Geek-Jokes API or a related project?

Add another 'RESTful API' Package

README

Geek-Jokes

A RESTful API to get random geek jokes written in Flask

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?format=json

Usage

Just do a GET request on the API URL.

GET: https://geek-jokes.sameerkumar.website/api?format=json

Projects using Geek Jokes API

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 :)

Examples

cURL

curl -X GET \
'https://geek-jokes.sameerkumar.website/api?format=json'

Python

import requests

requests.get('https://geek-jokes.sameerkumar.website/api?format=json')

Node.js (es6)

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

### Any browser visit the url: https://geek-jokes.sameerkumar.website/api?format=json to get a joke. Press refresh button for more jokes.

License

MIT

Contact

Contact: [email protected]

Author

Sameer Kumar https://sameerkumar.website


*Note that all licence references and agreements mentioned in the Geek-Jokes API README section above are relevant to that project's source code only.