Marketplace
No threads yet
Live

search_dynasty_players

rosteraudit.com

Searches dynasty-relevant fantasy football players on https://rosteraudit.com by name and optional position, or returns top players by value when no query is supplied. Results include all non-empty identity, team, age, Superflex and 1QB value, ranking, tier, photo, and recent trend fields.

Parameters4
Runs9
Updated10d ago
Operational9 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is search_dynasty_players?

Searches dynasty-relevant fantasy football players on https://rosteraudit.com by name and optional position, or returns top players by value when no query is supplied. Results include all non-empty identity, team, age, Superflex and 1QB value, ranking, tier, photo, and recent trend fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass q, position, limit, format_key and get the result back without maintaining a scraper.

Response

{
  "players": [
    {
      "age": 0,
      "name": "<string>",
      "team": "<string>",
      "tier": 0,
      "val_sf": 0,
      "buy_low": true,
      "val_1qb": 0,
      "position": "<string>",
      "trend_7d": 0,
      "photo_url": "<string>",
      "sell_high": true,
      "trend_30d": 0,
      "sleeper_id": "<string>",
      "rank_pos_sf": 0,
      "rank_pos_1qb": 0,
      "val_sf_market": 0,
      "val_1qb_market": 0,
      "rank_overall_sf": 0,
      "rank_overall_1qb": 0
    }
  ],
  "attribution": "<string>",
  "attribution_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/557ddea1-e42f-425f-af75-da0f6aee691a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "557ddea1-e42f-425f-af75-da0f6aee691a",
    "variables": {
        "q": "",
        "position": "all",
        "limit": 10,
        "format_key": "sf_ppr"
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="557ddea1-e42f-425f-af75-da0f6aee691a") — the "search_dynasty_players" function, which searches dynasty-relevant fantasy football players on https://rosteraudit.com by name and optional position, or returns top players by value when no query is supplied. Results include all non-empty identity, team, age, Superflex and 1QB value, ranking, tier, photo, and recent trend fields..

It takes q (str), position (str), limit (int), format_key (str). Return the result as structured JSON.