Skip to content
drrobl0xx edited this page Jul 28, 2026 · 5 revisions

jokelboard-wrapper

Official API wrapper for Jokelboard, available in three languages.


Packages

Language Package Install
JavaScript @yeetgodpro1324/jokelboard-js npm install @yeetgodpro1324/jokelboard-js
TypeScript @yeetgodpro1324/jokelboard-ts npm install @yeetgodpro1324/jokelboard-ts
Python jokelboard pip install jokelboard

Documentation


Quick start

JavaScript

import { JokelboardClient } from '@yeetgodpro1324/jokelboard-js';

const client = new JokelboardClient({ token: process.env.JOKELBOARD_TOKEN });
const boards = await client.listBoards();

TypeScript

import { JokelboardClient } from '@yeetgodpro1324/jokelboard-ts';

const client = new JokelboardClient({ token: process.env.JOKELBOARD_TOKEN });
const boards = await client.listBoards();

Python

import os
from jokelboard import JokelboardClient

with JokelboardClient(token=os.environ["JOKELBOARD_TOKEN"]) as client:
    boards = client.list_boards()

This wiki and all wrapper packages (JavaScript, TypeScript, and Python) were generated by Claude Code using the Fable 5 model.

Clone this wiki locally