get_dynasty_fantasy_football_rankings
rosteraudit.comReturns paginated dynasty fantasy football rankings from https://rosteraudit.com, with filters for scoring format, position, ranking sort, age range, league size, and page size. Each result includes all non-empty player or draft-pick ranking fields and source attribution.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_dynasty_fantasy_football_rankings?
Returns paginated dynasty fantasy football rankings from https://rosteraudit.com, with filters for scoring format, position, ranking sort, age range, league size, and page size. Each result includes all non-empty player or draft-pick ranking fields and source attribution. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass format, position, sort, min_age, max_age, league_size, page, per_page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"total": 0,
"format": "<string>",
"preset": "<string>",
"players": [
{
"age": 0,
"name": "<string>",
"team": "<string>",
"tier": 0,
"value": 0,
"buy_low": true,
"breakout": true,
"position": "<string>",
"rank_pos": 0,
"trend_7d": 0,
"photo_url": "<string>",
"sell_high": true,
"trend_30d": 0,
"years_exp": 0,
"sleeper_id": "<string>",
"rank_overall": 0,
"val_sf_market": 0,
"val_1qb_market": 0
}
],
"idp_live": true,
"per_page": 0,
"attribution": "<string>",
"total_pages": 0,
"preset_label": "<string>",
"attribution_url": "<string>",
"league_adjusted": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/2375310e-33a5-4e07-b04f-79d2455fbd27/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "2375310e-33a5-4e07-b04f-79d2455fbd27",
"variables": {
"format": "sf",
"position": "all",
"sort": "value",
"min_age": null,
"max_age": null,
"league_size": 12,
"page": 1,
"per_page": 50
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="2375310e-33a5-4e07-b04f-79d2455fbd27") — the "get_dynasty_fantasy_football_rankings" function, which returns paginated dynasty fantasy football rankings from https://rosteraudit.com, with filters for scoring format, position, ranking sort, age range, league size, and page size. Each result includes all non-empty player or draft-pick ranking fields and source attribution.. It takes format (str), position (str), sort (str), min_age (float | None), max_age (float | None), league_size (int), page (int), per_page (int). Return the result as structured JSON.