PanSou Cloud Storage Search avatar

PanSou Cloud Storage Search

Pricing

from $1.00 / 1,000 results

Go to Apify Store
PanSou Cloud Storage Search

PanSou Cloud Storage Search

Search 13 cloud storage types: Baidu, Aliyun, Quark, Tianyi, 115, Xunlei, UC, 123, PikPak, Magnet. 100+ TG channels + 80+ plugins. Real-time JSON API with passwords. Movies, software, ebooks.

Pricing

from $1.00 / 1,000 results

Rating

0.0

(0)

Developer

xinyao a

xinyao a

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

13 days ago

Last modified

Share

PanSou — Chinese Cloud Storage Search API

Search across 100+ Telegram channels and 80+ search plugins for cloud storage resources.

Try on Apify Website


🎯 Why PanSou?

Finding resources on Chinese cloud storage is fragmented and frustrating. Resources are scattered across dozens of platforms and hidden in private Telegram channels.

PanSou aggregates everything into a single API call.

FeatureDetails
🔌 13 storage typesBaidu, Aliyun, Quark, Tianyi, 115, Xunlei, UC, 123, PikPak, Magnet, Mobile, eD2k
📡 100+ TG channelsContinuously updated resource sharing channels
🔧 80+ pluginsWordPress, forum, and site-specific search plugins
🔑 Passwords includedExtraction codes displayed alongside links
Real-timeNo caching — always returns fresh results
📦 Structured JSONClean output ready for your pipeline

💡 Use Cases

  • 🎬 Find movies & TV shows across cloud drives
  • 💻 Discover software and tools
  • 📚 Search ebooks & courses — textbooks, tutorials, learning materials
  • 🤖 Power your bot — Telegram / Discord / Slack bots
  • 🔗 Enrich datasets — add resource links to your data pipeline
  • 🏗️ Build apps — use as backend for resource search apps

🚀 Quick Start

Try in Console

Click "Try for free" above, enter a keyword, get results instantly.

API (curl)

# Start a run
curl -X POST "https://api.apify.com/v2/acts/immense_insulator~pansou-search/runs" \
-H "Authorization: Bearer YOUR_APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{"keyword": "庆余年", "limit": 20}'
# Fetch results (use run ID from above)
curl "https://api.apify.com/v2/datasets/DATASET_ID/items?token=YOUR_APIFY_TOKEN"

Python SDK

from apify_client import ApifyClient
client = ApifyClient("YOUR_TOKEN")
# Run the actor
run = client.actor("immense_insulator/pansou-search").call(
run_input={"keyword": "庆余年", "limit": 50}
)
# Process results
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(f"[{item['type']}] {item['title']}")
print(f" {item['url']} (pw: {item['password']})")

JavaScript / Node.js

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_TOKEN' });
const run = await client.actor('immense_insulator/pansou-search').call({
keyword: '星穹铁道',
limit: 30
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach(item => {
console.log(`[${item.type}] ${item.title}${item.url}`);
});

📥 Input

ParameterTypeRequiredDefaultDescription
keywordstringSearch term (Chinese or English)
limitinteger100Max results (1–500)

📤 Output

{
"keyword": "庆余年",
"results": [
{
"type": "quark",
"title": "庆余年 4K臻彩MAX [更新至139集]",
"url": "https://pan.quark.cn/s/abc123",
"password": "abcd",
"date": "2026-05-08"
},
{
"type": "aliyun",
"title": "庆余年 S1+S2 完整版",
"url": "https://www.alipan.com/s/xyz789",
"password": "",
"date": "2026-05-07"
}
]
}

📊 Performance

MetricValue
Avg response time3–5 seconds
Max results500 / query
Timeout60 seconds
Backend rate limitNone

💰 Pricing

ItemCost
Per result$0.001
Per run start$0.00005
Apify platform fee20%

Example costs:

  • Quick search (20 results): ~$0.02
  • Full search (100 results): ~$0.10
  • Deep search (500 results): ~$0.50

📦 Supported Platforms

Platformtype fieldNotes
百度网盘baiduMost popular in China
阿里云盘aliyunNo speed limits
夸克网盘quarkFast, generous free tier
天翼云盘tianyiChina Telecom
115网盘115Large storage
迅雷云盘xunleiP2P accelerated
UC网盘ucMobile-friendly
123云盘123Simple & fast
PikPakpikpakInternational access
磁力链接magnetBitTorrent
中国移动云盘mobileFree for CM users
电驴ed2kLegacy P2P
蓝奏云lanzouSmall files

Made with ❤️ by 新尧