I found this great query in another thread and I am using a basis of it for my own league data:
Original:
CODE
http://fantasysports.yahooapis.com/fantasy/v2/games;game_keys=nfl/leagues;league_keys=242.l.121153;out=settings,transactions,messages,scoreboard/teams;team_keys=242.l.121153.t.7;out=standings,stats;stats.type=week;stats.week=
current/roster/players/stats;type=week;week=current
Mine:
CODE
../v2/leagues;use_login=1;league_keys=key;out=settings,transactions,messages,scoreboar
d/teams;league_keys=key;out=standings
This provides me with all the messages,transactions,matchups and team standings in my league, but what I want to do is change it so I can limit the number of messages and transactions I return.
The problem is, I do not know how to properly structure that request, if I change it like the following, I get no matchup data back and the limitation doesn't work anyhow.
CODE
leagues;use_login=1;league_keys=248.l.2161;out=settings,transactions,messages;co
unt=10,scoreboard/teams;league_keys=248.l.2161;out=standings
Any help would be greatly appreciated, thanks