Back to Registry
View Author Profile
Official Verified
jisu-shouji
使用极速数据手机号码归属地 API,根据手机号查询归属省市、运营商及卡类型。
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/jisuapi/shoujiOr
极速数据手机号码归属地(Jisu Shouji)
基于 手机号码归属地 API 的 OpenClaw 技能, 根据手机号查询其归属省市、运营商和卡类型。
使用技能前需要申请数据,申请地址:https://www.jisuapi.com/api/shouji/
环境变量配置
# Linux / macOS
export JISU_API_KEY="your_appkey_here"
# Windows PowerShell
$env:JISU_API_KEY="your_appkey_here"
脚本路径
脚本文件:skills/shouji/shouji.py
使用方式
查询手机号码归属地
python3 skills/shouji/shouji.py '{"shouji":"13456755448"}'
请求 JSON 示例:
{
"shouji": "13456755448"
}
请求参数
| 字段名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| shouji | string | 是 | 手机号 |
返回结果示例
脚本直接输出接口的 result 字段,结构与官网示例一致(参考 https://www.jisuapi.com/api/shouji/):
{
"province": "浙江",
"city": "杭州",
"company": "中国移动",
"cardtype": "GSM"
}
当出现错误(如手机号为空、不正确或无信息)时,脚本会输出:
{
"error": "api_error",
"code": 202,
"message": "手机号不正确"
}
常见错误码
来源于 官方手机归属地文档:
| 代号 | 说明 |
|---|---|
| 201 | 手机号为空 |
| 202 | 手机号不正确 |
| 203 | 没有信息 |
系统错误码:
| 代号 | 说明 |
|---|---|
| 101 | APPKEY 为空或不存在 |
| 102 | APPKEY 已过期 |
| 103 | APPKEY 无请求权限 |
| 104 | 请求超过次数限制 |
| 105 | IP 被禁止 |
在 OpenClaw 中的推荐用法
- 用户提供手机号(可部分打码展示给用户):「查一下
1345675****是哪里的号码,哪个运营商。」 - 代理构造 JSON:
{"shouji":"13456755448"}并调用:
python3 skills/shouji/shouji.py '{"shouji":"13456755448"}' - 从返回结果中读取
province、city、company、cardtype字段,为用户总结号码归属地和运营商类型。
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-jisuapi-shouji": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.
Related Skills
jisu-geoconvert
使用极速数据经纬度地址转换 API,在百度/Google 坐标系下实现经纬度与地址的相互转换。
jisuapi 1947
jisu-huangli
使用极速数据黄历查询 API 按年月日查询农历、星座、生肖、宜忌、吉神凶神等黄历信息。
jisuapi 1947
jisu-express
使用极速数据快递查询 API 查询快递物流轨迹、签收状态,支持自动识别快递公司及顺丰/中通/跨越手机号后四位校验。
jisuapi 1947
jisu-recipe
使用极速数据菜谱大全 API 按关键词或分类检索菜谱,并支持查询菜谱分类和菜谱详情。
jisuapi 1947
jisu-enterprise
使用极速数据企业工商信息 API,查询企业基本信息、名称搜索结果、变更记录以及股东高管信息。
jisuapi 1947