dynasty-dealer-values
v1.0.0
Published
Tiny zero-dependency client for the free Dynasty Dealer values API — dynasty fantasy football player and draft pick values computed from 672,000+ real Sleeper trades. No API key required.
Maintainers
Readme
dynasty-dealer-values
Tiny zero-dependency client for the free Dynasty Dealer values API — dynasty fantasy football player and draft pick values computed from 672,000+ real Sleeper trades, not crowd votes. No API key, no signup.
npm install dynasty-dealer-valuesimport { getValues, getPlayer } from 'dynasty-dealer-values';
const allen = await getPlayer('Josh Allen');
console.log(`${allen.name}: ${allen.current_value}`);
// Position filter
const wrs = await getValues({ position: 'WR' });
// Per-slot rookie picks (the 1.03 specifically, not just "2027 1st")
const withSlots = await getValues({ perSlot: true });
// Redraft (single-season) model
const redraft = await getValues({ format: 'redraft', scoring: 'half', superflex: true });Node 18+ or any modern browser (CORS is enabled server-side). Responses are cached in-memory for an hour — values change at most a few times per day.
Data license
The values are free for any use — personal, commercial, or content — on one condition: display a visible link to dynastydealer.com (e.g. "Values by Dynasty Dealer") wherever they appear. This package's code is MIT.
Links
- API documentation
- More examples (Discord bot, pandas, Google Sheets)
- Dynasty Trade Calculator · Draft Grader · Market Terminal
