-
Notifications
You must be signed in to change notification settings - Fork 0
Home
drrobl0xx edited this page Jul 28, 2026
·
5 revisions
Official API wrapper for Jokelboard, available in three languages.
| 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 |
- Authentication — Token types, scopes, and security best practices
- Error-Handling — Error classes, auto-retry, and rate limits
-
API-Reference-JavaScript — Full method list for
@yeetgodpro1324/jokelboard-js -
API-Reference-TypeScript — Full method list for
@yeetgodpro1324/jokelboard-ts -
API-Reference-Python — Full method list for
jokelboard(Python) - Examples — Runnable code snippets for all three languages
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.