Back to Registry
View Author Profile
Official Verified
jisu-astro
使用极速数据星座运势 API 查询十二星座列表以及每日、每周、每月、每年星座运势。
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/jisuapi/jisu-astroOr
极速数据星座运势(Jisu Astro)
基于 星座运势 API 的 OpenClaw 技能,支持:
使用技能前需要申请数据,申请地址:https://www.jisuapi.com/api/astro/
- 星座列表(
/astro/all):获取 12 星座的 ID、名称、日期范围和图标。 - 星座运势查询(
/astro/fortune):按星座 ID 和日期查询今日、明日、本周、本月、本年星座运势。
可用于对话中回答「我是什么座」「今天白羊座运势怎样」「帮我看看这个月的感情/工作运」等问题。
环境变量配置
# Linux / macOS
export JISU_API_KEY="your_appkey_here"
# Windows PowerShell
$env:JISU_API_KEY="your_appkey_here"
脚本路径
脚本文件:skills/astro/astro.py
使用方式与请求参数
1. 获取星座列表(/astro/all)
python3 skills/astro/astro.py all
返回结果示例(节选自 官方文档):
[
{
"astroid": "1",
"astroname": "白羊座",
"date": "3-21~4-19",
"pic": "http://api.jisuapi.com/astro/static/images/baiyang.png"
},
{
"astroid": "2",
"astroname": "金牛座",
"date": "4-20~5-20",
"pic": "http://api.jisuapi.com/astro/static/images/jinniu.png"
}
]
字段说明:
astroid:星座 ID(1–12)astroname:星座名称(如 白羊座、金牛座)date:星座日期范围pic:星座图标地址
2. 星座运势查询(/astro/fortune)
python3 skills/astro/astro.py fortune '{"astroid":1,"date":"2016-01-19"}'
请求 JSON 示例:
{
"astroid": 1,
"date": "2016-01-19"
}
| 字段名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| astroid | int | 是 | 星座 ID(1–12) |
| date | string | 否 | 日期(YYYY-MM-DD),默认今天 |
返回结果示例(节选自 官方文档):
{
"astroid": "1",
"astroname": "白羊座",
"year": {
"date": "2016",
"summary": "未来一年将是白羊座历经艰辛终于寻得新的突破的一年。",
"money": "上半年收入还算稳定,但也不太会有意料之外的收入,需要花钱的地方倒是不少。",
"career": "十月之前,都相对还是白羊座的蛰伏期。",
"love": "与事业运类似,今年的桃花运也主要集中在下半年爆发。"
},
"week": {
"date": "2016-01-17~01-23",
"money": "偏财机会继续受重视。本职工作收入受压。",
"career": "太阳本周转入朋友宫,对事业的执着感下调,会寻觅新的圈子。",
"love": "一夜情几率高……",
"health": "性能量高强,小心纵欲伤身。",
"job": "方向有变,高新行业值得你更多关注。"
},
"today": {
"date": "2016-01-19",
"presummary": "你需要思考自身价值观是否符合当下环境。",
"star": "处女座",
"color": "黄色",
"number": "5",
"summary": "4",
"money": "4",
"career": "4",
"love": "3",
"health": "80%"
},
"tomorrow": {
"date": "2016-01-20",
"presummary": "今天你有些悲观哦。",
"star": "巨蟹座",
"color": "青绿色",
"number": "4",
"summary": "3",
"money": "3",
"career": "3",
"love": "3",
"health": "77%"
},
"month": {
"date": "2016-1",
"summary": "本月,事业对你而言是非常重要的。",
"money": "火星入资源宫,热烈关注偏财。",
"career": "木星上旬开启在工作宫的逆行……",
"love": "心灵刹那的触动和性的爆发,高度吻合。"
}
}
常见字段:
- 顶层:
astroid,astroname today/tomorrow:date,presummary,star(贵人星座),color,number,summary,money,career,love,healthweek/month/year:date,summary,money,career,love, 以及本周的job、health等...
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-jisu-astro": {
"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-shouji
使用极速数据手机号码归属地 API,根据手机号查询归属省市、运营商及卡类型。
jisuapi 1947
jisu-huangli
使用极速数据黄历查询 API 按年月日查询农历、星座、生肖、宜忌、吉神凶神等黄历信息。
jisuapi 1947
jisu-express
使用极速数据快递查询 API 查询快递物流轨迹、签收状态,支持自动识别快递公司及顺丰/中通/跨越手机号后四位校验。
jisuapi 1947
jisu-enterprise
使用极速数据企业工商信息 API,查询企业基本信息、名称搜索结果、变更记录以及股东高管信息。
jisuapi 1947