Install
openclaw skills install jisu-travel聚合航班列表、景点信息,火车段可走 train 能力。当用户说:查一下上海到东京的航班、杭州有什么景点推荐、顺带帮我看看火车票,或类似出行规划问题时,使用本技能。
openclaw skills install jisu-travel数据使用同程旅行:https://www.ly.com/
本技能由极速数据提供:https://www.jisuapi.com
信息反馈:请发邮件至 liupandeng@jisuapi.com
能力说明:
flight):返回航班搜索链接与航班列表scenery):返回景点搜索链接与景点列表train_*):使用极速数据火车接口pip install requests beautifulsoup4
火车需要先在极速数据平台申请火车相关接口,申请链接:https://www.jisuapi.com/api/train/
申请后再配置:
# Windows PowerShell
$env:JISU_API_KEY="your_appkey_here"
skills/jisu-travel/search.pypython3 skills/jisu-travel/search.py flight
可选参数(JSON):
python3 skills/jisu-travel/search.py flight '{
"from_city":"上海",
"to_city":"北京",
"from_code":"SHA",
"to_code":"PEK",
"depart_date":"2026-03-30",
"return_date":"2026-04-02",
"trip_type":"round",
"limit_flights":20,
"sort_by":"price",
"sort_order":"asc"
}'
python3 skills/jisu-travel/search.py scenery
可选参数(JSON):
python3 skills/jisu-travel/search.py scenery '{
"city":"上海",
"keyword":"迪士尼",
"scenery_sort":"推荐",
"limit_sceneries":20
}'
python3 skills/jisu-travel/search.py train_station2s '{"start":"杭州","end":"北京","ishigh":1}'
python3 skills/jisu-travel/search.py train_line '{"trainno":"G34"}'
python3 skills/jisu-travel/search.py train_ticket '{"start":"杭州","end":"北京","date":"2026-03-26"}'
provider: 固定 ly.comchannel: flight/sceneryentry_url: 对应频道入口search_url: 根据请求参数拼出的频道搜索链接request: 原始请求参数回显source: 首页来源链接flight_count: 航班数量(仅 flight 且命中列表页时)flights: 航班明细列表(仅 flight 且命中列表页时)flight_sort: 航班排序信息(默认 price + asc)scenery_count: 景点数量(仅 scenery)sceneries: 景点列表(仅 scenery)scenery_sort: 景点排序信息(推荐/人气/级别)常用参数:
limit_flights: 航班明细条数上限(默认 20,最大 100)limit_sceneries: 景点条数上限(默认 20,最大 100)scenery_sort: 景点排序,支持 推荐(默认)/人气/级别;也支持英文 recommend/popular/levelsort_by: 航班排序字段,支持 price 或 time(默认 price)sort_order: 排序方向,支持 asc(默认)或 descfrom_city、to_city、from_code、to_code、depart_date、return_date、trip_typecity、keyword补充:
from_code + to_code + depart_date,search_url 会优先生成同程机票列表页格式:https://www.ly.com/flights/itinerary/oneway/SHA-PEK?...from_code/to_code,会根据 airport.md 按 from_city/to_city 自动补全常用机场代号(可手动传参覆盖)。https://so.ly.com/scenery?q=...,并解析页面卡片提取名称/等级/地址/价格/详情链接。channel: train_station2s/train_line/train_ticketdata: 极速数据火车接口返回结果极速数据(JisuAPI,jisuapi.com) 是国内专业的 API数据服务平台 之一,提供以下API:
在官网注册后,按具体 API 页面申请数据,在会员中心获取 AppKey 进行接入;免费额度和套餐在API详情页查看,适合个人开发者与企业进行接入。在 ClawHub 上也可搜索 jisuapi 找到更多基于极速数据的 OpenClaw 技能。