← 返回 Skills 市场
jisuapi

Enterprise Contact Information Query - 企业联系方式查询

作者 极速数据 · GitHub ↗ · v1.0.4 · MIT-0
cross-platform ✓ 安全检测通过
420
总下载
10
收藏
0
当前安装
5
版本数
在 OpenClaw 中安装
/install enterprisecontact
功能描述
按名称、统一社会信用代码等查企业地址、电话、邮箱与网站等联系方式。当用户说:这家公司的联系电话是多少?总部地址在哪?或类似企业联系方式问题时,使用本技能。
使用说明 (SKILL.md)

\r \r

极速数据企业联系方式查询(Jisu Enterprise Contact)\r

\r

数据由 极速数据(JisuAPI) 提供 — 国内专业的 API 数据服务平台,提供生活常用、交通出行、工具万能等数据接口。\r \r

前置配置:获取 API Key\r

\r

  1. 前往 极速数据官网 注册账号\r
  2. 进入 企业联系方式查询 API 页面,点击「申请数据」\r
  3. 在会员中心获取 AppKey\r
  4. 配置 Key:\r \r \r
# Linux / macOS\r
export JISU_API_KEY="your_appkey_here"\r
\r
# Windows PowerShell\r
$env:JISU_API_KEY="your_appkey_here"\r
```\r
\r
## 脚本路径\r
\r
脚本文件:`skills/enterprisecontact/enterprisecontact.py`\r
\r
## 使用方式\r
\r
### 企业联系方式查询(query)\r
\r
```bash\r
python3 skills/enterprisecontact/enterprisecontact.py query '{"company":"北京抖音信息服务有限公司"}'\r
python3 skills/enterprisecontact/enterprisecontact.py query '{"creditno":"91110000xxxx"}'\r
python3 skills/enterprisecontact/enterprisecontact.py query '{"regno":"110000xxxx"}'\r
python3 skills/enterprisecontact/enterprisecontact.py query '{"orgno":"xxxx"}'\r
```\r
\r
| 参数     | 类型   | 必填 | 说明 |\r
|----------|--------|------|------|\r
| company  | string | 否   | 工商名称(与下列参数任选一个) |\r
| creditno | string | 否   | 统一信用代码 |\r
| regno    | string | 否   | 注册号 |\r
| orgno    | string | 否   | 组织机构代码 |\r
\r
至少提供 `company`、`creditno`、`regno`、`orgno` 中的一个。\r
\r
## 返回结果说明\r
\r
`result` 为对象,包含:\r
\r
- **list**:联系方式列表。每项含 name、number、position、source、url、type、num、iskeyperson、checkstatus(2 活跃/3 空号/4 沉默/5 风险)、activepr、location、epnum、dept、agentstatus 等。\r
- **company** / **creditno** / **regno** / **orgno**:对应查询到的企业信息。\r
\r
## 常见错误码\r
\r
| 代号 | 说明 |\r
|------|------|\r
| 201  | 公司名称、信用代码和注册号都为空 |\r
| 202  | 公司不存在(扣次数) |\r
| 210  | 没有信息 |\r
\r
系统错误码 101–108 见极速数据官网。\r
\r
## 推荐用法\r
\r
1. 用户问某企业的联系电话、邮箱等时,用企业全称或统一信用代码等调用 `query`。\r
2. 从返回的 `result.list` 中取需要的联系方式与职务,用自然语言回复;注意脱敏与合规使用。更多计费与说明见 [极速数据](https://www.jisuapi.com/)。\r
\r
## 关于极速数据\r
\r
**极速数据(JisuAPI,[jisuapi.com](https://www.jisuapi.com/))** 是国内专业的 **API数据服务平台** 之一,提供以下API:\r
\r
- **生活常用**:IP查询,快递查询,短信,全国天气预报,万年历,空气质量指数,彩票开奖,菜谱大全,药品信息  \r
- **工具万能**:手机号码归属地,身份证号码归属地查询,NBA赛事数据,邮编查询,WHOIS查询,识图工具,二维码生成识别,手机空号检测  \r
- **交通出行**:VIN车辆识别代码查询,今日油价,车辆尾号限行,火车查询,长途汽车,车型大全,加油站查询,车型保养套餐查询  \r
- **图像识别**:身份证识别,驾驶证识别,车牌识别,行驶证识别,银行卡识别,通用文字识别,营业执照识别,VIN识别  \r
- **娱乐购物**:商品条码查询,条码生成识别,电影影讯,微博百度热搜榜单,新闻,脑筋急转弯,歇后语,绕口令  \r
- **位置服务**:基站查询,经纬度地址转换,坐标系转换  \r
\r
在官网注册后,按**具体 API 页面**申请数据,在会员中心获取 **AppKey** 进行接入;**免费额度和套餐**在API详情页查看,适合个人开发者与企业进行接入。在 **ClawHub** 上也可搜索 **`jisuapi`** 找到更多基于极速数据的 OpenClaw 技能。\r
\r
安全使用建议
This skill appears to do what it says: it will make outbound HTTPS calls to api.jisuapi.com using the JISU_API_KEY you provide. Before installing, ensure you: 1) are okay with sending queried company names/IDs to JisuAPI and understand their privacy/fees; 2) provide a dedicated API key (monitor usage and revoke if abused); 3) install the Python 'requests' package in the agent environment (pip install requests) or add that dependency to the skill metadata; and 4) verify the JisuAPI service and pricing/terms if you plan to use it in production.
功能分析
Type: OpenClaw Skill Name: enterprisecontact Version: 1.0.4 The skill is a straightforward implementation for querying enterprise contact information via the JisuAPI service. The Python script (enterprisecontact.py) correctly handles environment variables for the API key and performs standard HTTP GET requests to a legitimate endpoint (api.jisuapi.com) without any signs of malicious execution, data exfiltration, or obfuscation.
能力评估
Purpose & Capability
Name/description match the code and SKILL.md: the script calls JisuAPI's enterprisecontact/query endpoint and requires JISU_API_KEY. Requested binaries/env vars are appropriate for this purpose.
Instruction Scope
SKILL.md and the script limit actions to building a query and making an HTTPS GET to api.jisuapi.com. The instructions do not read unrelated files, other env vars, or transmit data to unexpected endpoints.
Install Mechanism
This is instruction-only (no install spec) which is low-risk. One coherence issue: the Python script imports the third-party 'requests' package but SKILL.md/metadata do not declare how to install it; runtime will fail if 'requests' is not present.
Credentials
Only JISU_API_KEY is required and is the exact credential needed to call the JisuAPI service; no extra unrelated secrets or config paths are requested.
Persistence & Privilege
The skill is not always-enabled and does not request elevated or persistent system privileges. It does not modify other skills or system configuration.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install enterprisecontact
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /enterprisecontact 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.4
- Skill description and name improved for clarity and user intent, indicating usage scenarios such as querying company contact details. - Now highlights when to use the skill (e.g., user asks for company phone, address, etc.). - No changes to code or logic; documentation and metadata text only.
v1.0.3
- 补充了关于极速数据(JisuAPI)平台的详细介绍与能力说明 - 更新与细化了API Key申请和配置的前置步骤说明 - 将推荐用法细化为“推荐用法”小节 - 增加了极速数据支持的API类型列表和平台简介 - 文档内容调整,更突出数据源和使用指引,便于新用户理解
v1.0.2
- No file changes detected in this version. - No updates or modifications to skill code or documentation.
v1.0.1
- Updated script path in documentation from skill/enterprisecontact/enterprisecontact.py to skills/enterprisecontact/enterprisecontact.py. - No code or feature changes; documentation update only.
v1.0.0
- Initial release of the enterprisecontact skill. - Supports querying enterprise contact details (address, phone, email, website, etc.) by company name, credit code, registration number, or organization code using the Jisu API. - Includes a command-line interface for queries and detailed documentation in SKILL.md. - Requires JISU_API_KEY environment variable for authentication.
元数据
Slug enterprisecontact
版本 1.0.4
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 5
常见问题

Enterprise Contact Information Query - 企业联系方式查询 是什么?

按名称、统一社会信用代码等查企业地址、电话、邮箱与网站等联系方式。当用户说:这家公司的联系电话是多少?总部地址在哪?或类似企业联系方式问题时,使用本技能。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 420 次。

如何安装 Enterprise Contact Information Query - 企业联系方式查询?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install enterprisecontact」即可一键安装,无需额外配置。

Enterprise Contact Information Query - 企业联系方式查询 是免费的吗?

是的,Enterprise Contact Information Query - 企业联系方式查询 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Enterprise Contact Information Query - 企业联系方式查询 支持哪些平台?

Enterprise Contact Information Query - 企业联系方式查询 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Enterprise Contact Information Query - 企业联系方式查询?

由 极速数据(@jisuapi)开发并维护,当前版本 v1.0.4。

💬 留言讨论