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.
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.
-
falcon
The no-magic web API and microservices framework for Python developers, with an emphasis on reliability and performance at scale. -
hug
Embrace the APIs of the future. Hug aims to make developing APIs as simple as possible, but no simpler. -
connexion
Connexion is a modern Python web framework that makes spec-first and api-first development easy. -
Django REST Swagger
DISCONTINUED. Swagger Documentation Generator for Django REST Framework: deprecated -
pycord
Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord written in Python -
django-sql-explorer
SQL reporting that Just Works. Fast, simple, and confusion-free. Write and share queries in a delightful SQL editor, with AI assistance. -
django-admin-interface
:superhero: :zap: django's default admin interface with superpowers - customizable themes, popup windows replaced by modals and many other features. -
flask-restless
NO LONGER MAINTAINED - A Flask extension for creating simple ReSTful JSON APIs from SQLAlchemy models. -
apispec
A pluggable API specification generator. Currently supports the OpenAPI Specification (f.k.a. the Swagger specification).. -
django-maintenance-mode
:construction: :hammer_and_wrench: shows a 503 error page when maintenance-mode is on. -
pyswagger
An OpenAPI (fka Swagger) client & converter in python, which is type-safe, dynamic, spec-compliant. -
Flask-Muck
๐งน Flask REST framework for generating CRUD APIs and OpenAPI specs in the SQLAlchemy, Marshmallow/Pydantic application stack. -
Changelog CI
Changelog CI is a GitHub Action that enables a project to automatically generate changelogs
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Geek-Jokes API or a related project?
README
Geek-Jokes
A RESTful API to get random geek jokes written in Flask
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.