├── .github └── workflows │ └── ci.yml ├── .gitignore ├── README.md └── scrapyman_no_backgroud_100_100.png /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: ci 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | schedule: 8 | - cron: "* * * * *" 9 | 10 | jobs: 11 | autogreen: 12 | runs-on: ubuntu-latest 13 | 14 | permissions: 15 | contents: write 16 | 17 | steps: 18 | - name: Clone repository 19 | uses: actions/checkout@v3 20 | 21 | - name: Auto green 22 | run: | 23 | git config --local user.email "changshashuxing@gmail.com" 24 | git config --local user.name "${{ github.actor }}" 25 | git remote set-url origin https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} 26 | git pull --rebase 27 | git commit --allow-empty -m "a commit a day keeps your girlfriend away" 28 | git push 29 | 30 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | *bak 4 | .history 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Scrapyman Scrapyman Logo —— Your Trusted Data Partner 2 | 3 | We are a professional data service provider, offering standard HTTP API services and customized data solutions tailored to your needs. 4 | 5 | ## Contact Information 6 | 7 | You can obtain our API documentation and enjoy free testing through the following contact methods. Recharge credits have no expiration date and are valid until depleted. 8 | 9 | - **WeChat**: heheheheman 10 | - **Telegram**: [t.me/heheheheheman](https://t.me/heheheheheman) 11 | 12 | Feel free to contact us with any questions. 13 | 14 | ## Service Overview 15 | 16 | Below are the platform APIs we currently provide. This list may not always be up-to-date, so please contact us to get the latest real-time API documentation and view the most recent API list. 17 | 18 | ### 🔥🔥Xiaohongshu (Little Red Book/Red Note/ Red Book)🔥🔥 19 | 20 | - Xiaohongshu Note Details 21 | - Xiaohongshu User Details 22 | - Xiaohongshu User Note List 23 | - Xiaohongshu Note Comments 24 | - Xiaohongshu Sub-comments 25 | - Xiaohongshu Note Search 26 | - Xiaohongshu User Search 27 | - Xiaohongshu Home Feed 28 | 29 | ### Taobao 30 | 31 | - Taobao Product Details 32 | - Taobao Product Reviews 33 | - Taobao Store Product List 34 | - Taobao Product Sales (Accurate Rolling 30-Day Sales) 35 | - Taobao Search Products 36 | - Taobao Product Description (Bottom Description Images) 37 | 38 | ### Douyin (Videos) 39 | 40 | - Douyin Video Details 41 | - Douyin User Details 42 | - Douyin User Video List 43 | - Douyin Video Search 44 | - Douyin User Search 45 | 46 | ### Kuaishou 47 | 48 | - Kuaishou Video Details 49 | - Kuaishou User Details 50 | - Kuaishou User Video List 51 | - Kuaishou User Search 52 | 53 | ### Douyin (E-commerce) 54 | 55 | - Douyin Xiaohuangche (Livestream Product List) 56 | - Douyin Store Product List 57 | - Douyin Product Reviews 58 | 59 | ### Temu 60 | 61 | - Temu Product Details 62 | 63 | ### Lazada 64 | 65 | - Lazada Product Details 66 | 67 | ### SHEIN 68 | 69 | - SHEIN Product Details 70 | 71 | ### Shopee 72 | 73 | - Shopee Product Details 74 | 75 | ### JD.com 76 | 77 | - JD.com Product Details 78 | 79 | ### Pinduoduo 80 | 81 | - Pinduoduo API is currently under strong risk control. Please contact us to inquire about the current status. 82 | 83 | ### WeChat Official Accounts 84 | 85 | - WeChat Official Account Posts 86 | - WeChat Official Account Article Views and Likes 87 | - WeChat Official Account Article Comments 88 | - WeChat Official Account Search 89 | 90 | ### Xiaohongshu Pugongying 91 | 92 | - Pugongying Platform KOL Data 93 | 94 | ### Douyin Xingtu 95 | 96 | - Pugongying Platform KOL Data 97 | 98 | ### Tencent Ads Self-service 99 | 100 | - Tencent Ads Self-service KOL Data 101 | 102 | ### Dianping 103 | 104 | - Store Basic Information 105 | 106 | ### Weibo 107 | 108 | - Weibo Search 109 | - Weibo Details 110 | 111 | ### Other 112 | 113 | - Bilibili 114 | - Zhihu 115 | - Bigo 116 | - Beike 117 | - Baidu Index 118 | - Ctrip 119 | - Boss Zhipin 120 | - Zhaopin 121 | - Lagou 122 | - Toutiao 123 | - Facebook 124 | - YouTube 125 | - Instagram 126 | - Twitter 127 | -------------------------------------------------------------------------------- /scrapyman_no_backgroud_100_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapyman/crawl-data-api/3eb853bb1a39660f6f70d79feec7a7809d954374/scrapyman_no_backgroud_100_100.png --------------------------------------------------------------------------------