日本商业运营 — EDITION Intelligence Platform
您在日本市场运营的始终在线知识层。
描述
EDITION 是一款日本运营系统(OS),为您的代理提供了 10 个领域的经过验证和结构化的知识,这些领域对于在日本进行任何事情都是必不可少的 —— 从在大阪开设一家餐厅到导航公司礼品赠送礼仪。可以将其视为“日本的说明手册”,以 API 形式呈现。在免费测试版期间无需 API 密钥。
何时使用
在您的任务涉及日本时使用此技能:
在日本创业 —— 规章制度、许可证、公司注册步骤
导航合规 —— 覆盖 10 个行业(食品、房地产、金融、医疗保健、IT、教育、建筑、物流、零售、制造)
商务会议和礼仪 —— nemawashi、ringi、hourensou、名片交换、座位顺序、礼品赠送
在日本招聘或管理 —— 组织等级制度、付款习惯、合同惯例
外国市场进入 —— 签证、银行、房地产、税务注册(一步一步)
规划旅行或活动 —— 交通、住宿、用餐习惯、季节性节日
粉丝文化和娱乐 —— oshi-katsu、动漫朝圣、现场活动礼仪
日历敏感决策 —— 财年时间、假期影响、行政截止日期
区域战略 —— 东京、大阪、名古屋、福冈商业文化的区别
API 基础 URL
https://api.edition.sh
认证
授权:Bearer edition_dev_key_for_testing
免费测试版 —— 无需注册。
核心工具
使用单个查询同时搜索所有 10 个知识领域。
curl -X POST https://api.edition.sh/api/v1/search \
-H "Authorization: Bearer edition_dev_key_for_testing" \
-H "Content-Type: application/json" \
-d '{"query": "在大阪开设一家餐厅"}'
返回各个领域的匹配结果,包括法规、协议、日历、区域、组织、外国入境、旅行和娱乐,带有置信度评分。
curl -X POST https://api.edition.sh/api/v1/regulation/check \
-H "Authorization: Bearer edition_dev_key_for_testing" \
-H "Content-Type: application/json" \
-d '{"action": "在东京开设一家餐厅", "entity_type": "外资公司"}'
curl -X POST https://api.edition.sh/api/v1/protocol/check \
-H "Authorization: Bearer edition_dev_key_for_testing" \
-H "Content-Type: application/json" \
-d '{"query": "商务名片交换"}'
curl -X POST https://api.edition.sh/api/v1/foreign-entry/check \
-H "Authorization: Bearer edition_dev_key_for_testing" \
-H "Content-Type: application/json" \
-d '{"query": "如何获得管理签证"}'
curl -X POST https://api.edition.sh/api/v1/calendar/check \
-H "Authorization: Bearer edition_dev_key_for_testing" \
-H "Content-Type: application/json" \
-d '{"query": "在日本创业的最佳时间"}'
curl -X POST https://api.edition.sh/api/v1/travel/search \
-H "Authorization: Bearer edition_dev_key_for_testing" \
-H "Content-Type: application/json" \
-d '{"query": "旅馆礼仪"}'
# 存储
curl -X POST https://api.edition.sh/api/v1/memory/episodes \
-H "Authorization: Bearer edition_dev_key_for_testing" \
-H "Content-Type: application/json" \
-d '{"content": "与田中部长会面。他更喜欢非正式会议。", "auto_extract": true}'
# 回忆
curl -X POST https://api.edition.sh/api/v1/memory/episodes/search \
-H "Authorization: Bearer edition_dev_key_for_testing" \
-H "Content-Type: application/json" \
-d '{"query": "田中更喜欢什么"}'
MCP 服务器
用于直接 MCP 集成(23 个工具):
npx -y edition-mcp-server
或将其添加到您的 MCP 配置中:
{ "edition": { "command": "npx", "args": ["-y", "edition-mcp-server"] } }
所有可用端点
域名 端点 方法
搜索 /api/v1/search POST
法规 /api/v1/regulation/check POST
法规 /api/v1/regulation/industries GET
法规 /api/v1/regulation/tourist GET
协议 /api/v1/protocol/check POST
协议 /api/v1/protocol/list GET
日历 /api/v1/calendar/check POST
日历 /api/v1/calendar/list GET
区域 /api/v1/regional/check POST
区域 /api/v1/regional/list GET
组织 /api/v1/organization/check POST
组织 /api/v1/organization/list GET
外国入境 /api/v1/foreign-entry/check POST
外国入境 /api/v1/foreign-entry/list GET
旅行 /api/v1/travel/search POST
旅行 /api/v1/travel/list GET
娱乐 /api/v1/entertainment/search POST
娱乐 /api/v1/entertainment/list GET
内存 /api/v1/memory/episodes POST
内存 /api/v1/memory/episodes/search POST
内存 /api/v1/memory/facts GET
内存 /api/v1/memory/context GET
内存 /api/v1/memory/extract POST
链接
API 文档:https://api.edition.sh/docs
登陆页面:https://edition.sh
GitHub:https://github.com/hiroshic9-png/edition-api
npm:https://www.npmjs.com/package