Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to gather league standings by month (or a custom time period) I know how to do it for a specific date but can't seem to find a way to do from x to y

Is this possible? (other than repeating the query for each day I want)

Is is not a head to head or rotisserie league, just straight overall points.

Edit:

Example query:

enter image description here

share|improve this question
Please post how you are doing it for a specific date. – Matthew Strawbridge Dec 11 '11 at 12:05
Well you have to sign in to use the YQL console, but an example query is here – Terry Dec 13 '11 at 22:18

1 Answer

up vote 1 down vote accepted

No, there is no way to fetch by month or for a date range. If you look at the YQL table fantasysports.leagues.scoreboard, you can see the parameters only accept the optional week parameter. This matches the Yahoo! Fantasy Sports API docs (search for 'scoreboard') which shows it can give results for the current week, or another specified week.

I think this is because the Yahoo! Fantasy Sports scoreboards are all week-based, regardless of the actual frequency of games for the specific sport.

To capture scores by month, you can make several individual calls for each week.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.