$w=New-Object System.Net.WebClient
$w.Encoding=[System.Text.Encoding]::UTF8
$c=1;$tc=0;$wr=""
do{
$u="https://gyao.yahoo.co.jp/api/coming_soon/all/free/programs/?page=";+$c+"&perPage=100"
$j=ConvertFrom-Json $w.DownloadString($u)
$e=$j.ended
$i=$j.items
foreach($x in $i){
$t=$x.title
$t
$cnt_id=$x.programId
$url="https://gyao.yahoo.co.jp/title/"; + $cnt_id
$st=[DateTime]$x.startDate
$wr+=$t+"`r`n"+$url+"`r`n"+"配信開始日:"+$st.Tostring("yyyy年MM月dd日(ddd)")+"`r`n`r`n"
$tc++
}
$c++
} until($e)
$wr+="計:" + $tc
$f="./GYAO配信予定.txt"
$fi=New-Object System.IO.StreamWriter($f, $false, [System.Text.Encoding]::GetEncoding("sjis"))
$fi.Write($wr)
$fi.close()

↑をメモ帳にコピペして拡張子".ps1"で保存してください。
その.ps1を右クリックして「Powrshell で実行」すると・・・
その.ps1があるフォルダに”GYAO配信予定.txt”というファイルが出来ますわ