egghead
I noticed that you can download the entire series by visiting while loggedin
`https://egghead.io/api/v1/series/${series_name}`
Example: https://egghead.io/api/v1/series/advanced-react-component-patterns
You should get something like this
```
{
"id":166,
"duration":4306,
"title":"Advanced React Component Patterns",
"slug":"advanced-react-component-patterns",
"state":"published",
...,
"lessons_url":"https://egghead.io/api/v1/series/advanced-react-component-patterns/lessons",
"download_url":"https://egghead.io/api/v1/series/advanced-react-component-patterns/download?key=[token_is_here]",
...
}
```
Copy the value of the download_url key and open it in the browser.
This will download the entire series as a zip file.
the zip file tends to be pretty big though, but then you could always go through each lesson and call the download_url for that lesson
or write a script that does that XD