chucknorris.io Categories API

Joke category metadata.

Documentation

Specifications

Schemas & Data

Other Resources

🔗
JSONLD
https://raw.githubusercontent.com/api-evangelist/chucknorris-io/refs/heads/main/json-ld/chucknorris-io-context.jsonld
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/chucknorris-io/refs/heads/main/examples/chucknorris-io-getRandomJoke-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/chucknorris-io/refs/heads/main/examples/chucknorris-io-getRandomJoke-by-category-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/chucknorris-io/refs/heads/main/examples/chucknorris-io-listCategories-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/chucknorris-io/refs/heads/main/examples/chucknorris-io-searchJokes-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/chucknorris-io/refs/heads/main/examples/chucknorris-io-getJokeById-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/chucknorris-io/refs/heads/main/examples/chucknorris-io-joke-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/chucknorris-io/refs/heads/main/examples/chucknorris-io-category-list-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/chucknorris-io/refs/heads/main/examples/chucknorris-io-search-result-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/chucknorris-io/refs/heads/main/examples/chucknorris-io-error-example.json
🔗
APIsJSON
https://raw.githubusercontent.com/api-evangelist/chucknorris-io/refs/heads/main/apis.yml

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/chucknorris-io-categories-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

chucknorris-io-categories-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Chuck Norris Jokes Categories API
  description: 'Free JSON REST API for hand-curated Chuck Norris facts maintained by

    @matchilling. Supports random retrieval, category filtering, full-text

    search, and direct lookup by joke identifier. No authentication is required

    and there are no documented rate limits.

    '
  version: 1.0.0
  contact:
    name: Mathias Schilling
    url: https://github.com/chucknorris-io
    email: cn-jokes-api@chucknorris.io
  license:
    name: GPL-3.0
    url: https://www.gnu.org/licenses/gpl-3.0.en.html
  termsOfService: https://api.chucknorris.io/
servers:
- url: https://api.chucknorris.io
  description: Production
tags:
- name: Categories
  description: Joke category metadata.
paths:
  /jokes/categories:
    get:
      operationId: listCategories
      summary: List Joke Categories
      description: 'Return the full list of supported joke categories. Use any of these

        values with the `category` parameter of `/jokes/random` to constrain

        random selection.

        '
      tags:
      - Categories
      responses:
        '200':
          description: Array of category identifiers.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CategoryList'
              examples:
                categories:
                  $ref: '#/components/examples/Categories'
            text/plain:
              schema:
                type: string
                description: Newline-delimited list of categories.
components:
  examples:
    Categories:
      summary: Category list response
      value:
      - animal
      - career
      - celebrity
      - dev
      - explicit
      - fashion
      - food
      - history
      - money
      - movie
      - music
      - political
      - religion
      - science
      - sport
      - travel
  schemas:
    CategoryList:
      type: array
      description: List of available joke category identifiers.
      items:
        type: string
        example: dev