Daddy's Got Jokes

Buy me a coffee coffee

Daddy's Got Jokes API

The easiest and quickest way to have fresh comedy served from a REST API.

laughing dog

End points

The end points support HTTP and HTTPS.

GET /joke
GET /joke/1
GET /jokes

Guide

Get a random joke

fetch("https://www.daddysgotjokes.com/joke")
.then(res => res.json())
.then(data => console.log(data))

Get a joke by id

fetch("https://www.daddysgotjokes.com/joke/1")
.then(res => res.json())
.then(data => console.log(data))

Get jokes

fetch("https://www.daddysgotjokes.com/jokes")
.then(res => res.json())
.then(data => console.log(data))

Query param

KeyValueHandle
pagenumber/jokes?page=number

Example

https://www.daddysgotjokes.com/jokes?page=2

Rate Limits

100 requests per day