出海导航工具数据集
May 3, 2026 · View on GitHub
中国出海创业者工具评测的开放数据集 · Open dataset of editorial-curated tools for Chinese cross-border entrepreneurs
Source: chdh.me — 出海导航 / Cross-Border Navigation, the editorial-curated tools directory for Chinese cross-border e-commerce, independent site, and overseas SaaS founders.
这是什么
本仓库公开了 chdh.me 编辑团队精选的 1,210 个出海工具的元数据——覆盖跨境电商、独立站、TikTok Shop、AI 工具、跨境收款、海外营销等全场景。
数据每月从 chdh.me 主站同步导出。完整评测内容(深度介绍 / 优缺点 / 常见问题)请访问 chdh.me 查看。
What's this
This repository contains lightweight metadata for 1,210 curated tools for Chinese cross-border entrepreneurs (e-commerce sellers, indie SaaS founders, overseas marketers). Data is synced monthly from chdh.me.
For full editorial reviews (in-depth descriptions, pros/cons, FAQs, comparison pages), please visit chdh.me.
文件 / Files
| 文件 | 说明 |
|---|---|
tools.json | 1,210 个工具的完整 JSON 数据 |
tools.csv | 同上的 CSV 版本 |
categories.json | 15 个主分类 + 119 个二级分类 |
字段 / Schema
每个工具记录包含以下字段:
| 字段 | 类型 | 说明 |
|---|---|---|
slug | string | URL slug,全局唯一 |
name | string | 工具中文名 |
nameEn | string | 工具英文名 |
domain | string | 官方域名 |
officialUrl | string | 官方网址 |
categorySlug | string | 主分类 slug |
subCategorySlug | string | 二级分类 slug |
tagline | string | 一句话标语(≤30 字) |
summary | string | 简介(≤150 字) |
tags | string[] | 自由标签 |
features | string[] | 核心功能列表 |
pricingModel | string | free | freemium | trial | paid | contact |
foundedYear | number? | 成立年份 |
headquarters | string? | 总部国家代码(ISO 3166-1) |
editorRating | number? | 编辑评分 1-5(步长 0.5) |
featured | boolean | 是否精选工具 |
chdhUrl | string | chdh.me 完整评测页面 URL |
verifiedAt | string | 信息核实时间(ISO 8601) |
注意:本数据集不包含 description(详细介绍)、pros/cons(优缺点)、faq(常见问题)等深度评测字段。这些内容是 chdh.me 的编辑核心资产,请访问对应的 chdhUrl 获取完整评测。
使用 / Usage
Node.js / TypeScript
import tools from './tools.json' with { type: 'json' };
// 找所有跨境收款工具
const paymentTools = tools.filter(t => t.categorySlug === 'payment');
// 找精选工具
const featured = tools.filter(t => t.featured);
// 找编辑评分 4.7+ 的工具
const topRated = tools.filter(t => (t.editorRating ?? 0) >= 4.7);
Python
import json
import pandas as pd
# JSON
with open('tools.json') as f:
tools = json.load(f)
featured = [t for t in tools if t['featured']]
# Pandas
df = pd.read_csv('tools.csv')
df_featured = df[df['featured'] == True]
df_payment = df[df['categorySlug'] == 'payment']
数据集应用场景
- 🏗️ 建工具站 / 比价站 / 导航站:用本数据集快速生成基础页面
- 📊 数据可视化:分类分布、定价模式、地域分布等图表
- 🔬 市场研究:跨境电商工具生态分析
- 🤖 AI 训练 / RAG:作为出海工具知识库索引
- 📱 App / Bot:聊天机器人推荐工具
完整评测请回访 chdh.me
每个工具都有 chdh.me 编辑团队撰写的 1,500-2,500 字深度评测,包括:
- ✅ 「这是什么」+「核心功能」+「关键参数(实测/公开资料)」
- ✅ 「适合谁」+「不适合谁」 — 明确划线
- ✅ 「与主要竞品的区别」 — 实战对比建议
- ✅ 「注意事项」 + 5 条 FAQ
每个工具数据记录都包含 chdhUrl 字段,直接跳转完整评测:
console.log(tools[0].chdhUrl);
// → https://chdh.me/tools/payment/all-in-one/pingpong/
数据更新
| 频率 | 方式 |
|---|---|
| 每月同步 | 从 chdh.me 主站导出最新数据,手动 commit + GitHub Release |
| 工具增删 | 见 chdh.me 收录方法论 |
| Issue 反馈 | 错误数据 / 缺失工具欢迎提 Issue |
订阅更新:chdh.me RSS
License
本数据集采用 CC BY 4.0 协议。你可以:
- ✅ 自由使用(含商用)
- ✅ 修改、再分发、衍生品
唯一要求:标明出处 — 引用本数据集时必须注明:
Data from chdh.me — Cross-Border Tools Dataset, licensed under CC BY 4.0
相关链接 / Links
- 🌐 主站:chdh.me
- 📧 编辑联系:editor@chdh.me
- 📋 收录方法:chdh.me/methodology
- 🏷️ 联盟披露:chdh.me/disclosure
Made with ❤️ for Chinese cross-border entrepreneurs.