📢 Public APIs
Get jokes
The API endpoint retrieves a list of jokes.
When accessing this endpoint, you will receive a response containing a collection of jokes.
This functionality is useful for retrieving multiple jokes at once, enabling you to incorporate humor and amusement into your application or provide entertainment to users.
get/public/randomjokes
Query parameters
limitstring
Example:10
querystring
Example:science
incstring
Example:categories,id,content
pagestring
Example:1
Response
Get random jokes
Example response
{
"data": {
"currentPageItems": 4,
"data": [
{
"categories": [
"science"
],
"content": "Science Fact: Roundhouse kicks are comprised primarily of an element called Chucktanium.",
"id": 140
},
{
"categories": [],
"content": "All science students maybe aware about the fact that picochuck is the unit of manliness in the International System of Units (SI). An average man measures about 0.00073 pc. Chuck Norris measures 39,372 petachucks.",
"id": 456
},
{
"categories": [],
"content": "The 7 wonders of the world were actually Chuck Norris' science fair projects. And Chuck Norris is the 8th wonder of the world.",
"id": 1073
},
{
"categories": [],
"content": "Larry the Cable Guy was a nuclear science physics professor at MIT for only 3 seconds more after he called Chuck Norris' mother a \"slutty beatch of a crack whore\".",
"id": 1269
}
],
"limit": 10,
"page": 1,
"totalItems": 4,
"totalPages": 1
},
"message": "Random jokes fetched successfully",
"statusCode": 200,
"success": true
}