Last active
March 5, 2026 23:14
-
-
Save quanon/5e08bccdb3921aebd6bf3afaae77bf43 to your computer and use it in GitHub Desktop.
リワインドの「新商品/再入荷」「Coming Soon/近日入荷」を JSON API で取得する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 新商品/再入荷 | |
| curl -s 'https://yoyostorerewind.com/collections/new-items/products.json' | jq -r '.products[] | "\n\(.vendor) - \(.title) (\(.variants[0].price | tonumber | floor) yen)\nhttps://yoyostorerewind.com/products/\(.handle)"' | |
| # Coming Soon/近日入荷 | |
| curl -s 'https://yoyostorerewind.com/collections/coming-soon/products.json' | jq -r '.products[] | "\n\(.vendor) - \(.title) (\(.variants[0].price | tonumber | floor) yen)\nhttps://yoyostorerewind.com/products/\(.handle)"' |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
jq コマンドが必要です。