chucknorris.io API
Overview
chucknorris.io is a free JSON API serving a curated database of Chuck Norris jokes, with endpoints for fetching random jokes, filtering by category, and searching joke text. All requests are unauthenticated, responses are immediate, and the API supports CORS for direct browser use. It is a classic beginner-friendly API used in tutorials for its simplicity and humor.
Beginner Tip
chucknorris.io is perfect for a first API project — no sign-up, no API key, and you can test every endpoint directly in your browser. Start with https://api.chucknorris.io/jokes/random to see a joke immediately, then explore categories with /jokes/categories.
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, usable to construct a direct permalink URL value The full text of the Chuck Norris joke url Canonical permalink URL for this specific joke on chucknorris.io categories List of category labels assigned to this joke (e.g., ["science", "money"]); empty array if uncategorized created_at Date when this joke was added to the database icon_url URL to the Chuck Norris avatar image associated with this joke Implementation Example
const url = "https://api.chucknorris.io/";
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 →Corporate Buzz Words
⭐ Beginner's PickCorporate Buzz Words is a fun REST API that generates random corporate jargon and business buzzwords.
Excuser
Excuser provides programmatic access to get random excuses for various situations via REST API.
Fun Fact
⭐ Beginner's PickFun Fact API randomly selects and returns a true, interesting fact from the FFA (Fun Facts Archive) database.
Imgflip
⭐ Beginner's PickImgflip API lets you retrieve a list of popular meme templates and programmatically create memes by adding captions to them.
Meme Maker
⭐ Beginner's PickMeme Maker API is a simple REST interface for creating custom memes by combining images with user-supplied text.