跳至主要內容
開放資料集

研究用開放資料集

本站採 CC BY 4.0 授權,**只要註明來源即可自由用於研究、報導、政策分析**。本頁聚合所有可程式化存取之資料源、引用範本與使用案例。

41
品牌
8
處分案
36
指南
297
FAQs

JSON API 端點

靜態 JSON,每次部署更新。CORS 開放(Access-Control-Allow-Origin: *),任何網站/程式可直接抓取。

品牌資料

41 家品牌完整 metadata

下載
GET https://mlmfact.com/api/brands.json
欄位: slug, name, englishName, foundedYear, headquarters, productLines, compensationPlan, industry, origin, mopsId, lastUpdated, hasRevenueData

公平會處分案

8 件案件詳細資料

下載
GET https://mlmfact.com/api/news.json
欄位: slug, title, publishDate, rulingDate, companyName, caseNumber, fineAmount, sourceUrl, excerpt

完整 API 文件請見 /api

程式範例

JavaScript(瀏覽器 / Node.js)
// 取得所有 41 家品牌資料
const res = await fetch('https://mlmfact.com/api/brands.json');
const { brands } = await res.json();

// 範例:篩選台灣本土保健類品牌
const taiwanHealthBrands = brands.filter(b =>
  b.origin === 'taiwan' && b.industry === 'health'
);

console.log(`找到 ${taiwanHealthBrands.length} 家台灣本土保健品牌`);
taiwanHealthBrands.forEach(b => console.log(`- ${b.name}`));
Python
import requests
import pandas as pd

# 取得處分案資料
r = requests.get('https://mlmfact.com/api/news.json')
data = r.json()

# 轉成 pandas DataFrame
df = pd.DataFrame(data['rulings'])
print(f"共 {len(df)} 件處分案")

# 分析罰鍰總金額
total_fines = df['fineAmount'].sum()
print(f"罰鍰總金額: NT$ {total_fines:,}")

# 按年份分組
df['year'] = pd.to_datetime(df['rulingDate']).dt.year
by_year = df.groupby('year').agg(
    count=('slug', 'count'),
    total_fine=('fineAmount', 'sum')
)
print(by_year)
curl + jq(命令列)
# 列出所有罰鍰超過 50 萬的案件
curl -s https://mlmfact.com/api/news.json \
  | jq '.rulings[] | select(.fineAmount >= 500000) | {company: .companyName, fine: .fineAmount, date: .rulingDate}'

# 計算各產業類別之品牌數
curl -s https://mlmfact.com/api/brands.json \
  | jq '.brands | group_by(.industry) | map({industry: .[0].industry, count: length})'
R(資料分析)
library(jsonlite)
library(dplyr)

# 取得品牌資料
brands <- fromJSON("https://mlmfact.com/api/brands.json")$brands

# 統計各起源國之品牌數
brands %>%
  count(origin, sort = TRUE) %>%
  print()

# 計算各產業之深化進度
brands %>%
  group_by(industry) %>%
  summarise(
    total = n(),
    enriched = sum(hasRevenueData)
  )

引用本站資料

本站採 CC BY 4.0 授權,使用時請以下列任一格式註明來源:

學術論文(APA)
直銷實錄. (2026). 台灣直銷產業品牌資料集. https://mlmfact.com/api/brands.json
新聞報導
依直銷實錄(mlmfact.com)2026 年資料
部落格 / 社群
資料來源:直銷實錄 mlmfact.com

每家品牌頁底部也提供該頁專屬之 APA / MLA / 純網址引用格式可一鍵複製。

使用案例

  • 學術研究

    直銷產業之消費者保護、規制政策、商業模式之量化研究——可用 JSON 端點抽取結構化資料做統計分析

  • 深度報導

    記者報導直銷產業現況時,可引用本站之罰鍰金額、業績趨勢、處分案件數等事實

  • 政策分析

    智庫、政府機關研究多層次傳銷產業之歷年違規態樣、消費者風險分佈時可作為輔助資料源

  • 消費者教育

    消保團體、教育機構之講座與教材可引用本站之品牌資料與法規解讀,協助大眾理解

想反向貢獻資料?

如果你手上有本站漏收的品牌、處分案、業績序列、收入分布資料——或發現本站既有資料有誤——可以透過下列管道結構化提交:

授權與限制

授權CC BY 4.0 — 可自由分享改作商用,僅需註明來源

不接受

  • 未註明來源之大量複製
  • 誤導性使用(如把本站包裝成「為 XX 品牌背書」)
  • 用於違反《多層次傳銷管理法》之行為

如有商業合作或大規模使用之需求,請寄信討論:[email protected]