icanhazdadjoke API
Overview
icanhazdadjoke is a free API serving the internet's largest collection of dad jokes. It returns a random dad joke in JSON, plain text, or image format with no API key needed. It is a favorite beginner project API because the responses are simple, clean, and always entertaining.
Beginner Tip
Set the Accept header to application/json to get a JSON response. Without it, the API returns plain text. You can also search jokes by keyword using the /search endpoint.
Available Data
Example Response
{
"error": false,
"category": "Programming",
"type": "twopart",
"setup": "Why do programmers prefer dark mode?",
"delivery": "Because light attracts bugs.",
"id": 42,
"lang": "en"
} Field Reference
id Unique identifier for the joke. joke The full text of the dad joke. status HTTP status code of the response, typically 200. Implementation Example
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://icanhazdadjoke.com/api";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Advice Slip
⭐ Beginner's PickAdvice Slip is a free, no-auth API that returns a random piece of advice with each request.
Biriyani As A Service
Biriyani As A Service provides programmatic access to biriyani images placeholder via REST API.
Dictum
⭐ Beginner's PickDictum is a free, no-auth API that serves a curated collection of inspiring quotes from famous thinkers, authors, and leaders throughout history.
FOAAS
FOAAS (F*** Off As A Service) is a humorous novelty API that returns comedic dismissal messages in various formats.
Forismatic
⭐ Beginner's PickForismatic is a free API that delivers short inspirational and motivational quotes from a curated collection.