espnfantasy_transactions
Retrieve completed fantasy sports transactions (adds, drops, trades, waiver claims) for a specific scoring period by providing season, league, and scoring period IDs.
Instructions
Completed transactions (adds, drops, trades, waiver claims) for a scoring period.
Returns: {transactions:[{id, type, status, teamId, memberId, scoringPeriodId, proposedDate, bidAmount, items:[{type:'ADD'|'DROP', playerId, fromTeamId, toTeamId}]}]}
Example: Week-3 transactions {"game": "ffl", "seasonId": 2018, "leagueId": 1234, "scoringPeriodId": 3}
Auth: works without a key; ESPN_FANTASY_COOKIE unlocks more if set.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| game | No | Fantasy game code. One of: ffl, flb, fba, fhl, wfba. | ffl |
| view | No | Leave as-is. | |
| leagueId | Yes | League id. Required — part of the URL path. | |
| seasonId | Yes | Season year (>= 2018). Required — part of the URL path. | |
| fantasy_filter | No | Optional type filter, e.g. {"transactions":{"filterType":{"value":["TRADE_ACCEPTED","WAIVER","FREEAGENT"]}}}. | |
| scoringPeriodId | Yes | Scoring period to read. REQUIRED — without it the response carries no `transactions` key at all. |