TopRank Skills

Home / Claw Skills / Intégration d'API / itick-stock-quote
Official OpenClaw rules 36%

itick-stock-quote

查询股票实时盘中行情、股票信息等功能。支持HK(港股)、SH(上证)、SZ(深证)、US(美股)、SG(新加坡)、JP(日本)、TW(中国台湾)、IN(印度)、TH(泰国)、DE(德国、MX(墨西哥)、MY(马来西亚)、TR(土耳其)、ES(西班牙)、NL(荷兰)、GB(英国)等,可获取实时报价和深度行情(买卖盘口)。使用itick.org API。

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 itick-stock-quote 技能。 若已安装,则直接安装 itick-stock-quote 技能。

Overview

Skill Key
chnmasterog/itick-stock-quote
Author
chnmasterog
Source Repo
openclaw/skills
Version
-
Source Path
skills/chnmasterog/itick-stock-quote
Latest Commit SHA
9c61a211793c2bf62825b8917f0b9bb5652c1081

Extracted Content

SKILL.md excerpt

# 股票实时行情查询

使用itick API查询股票实时行情。

## ⚠️ Token 与鉴权(必读)

API Token 通过环境变量 `ITICK_API_TOKEN` 自动注入(由 ClawHub 管理),**不需要用户在对话中手动提供或粘贴 Token**。

# 使用方法

## 1. 股票信息

```bash
curl -X GET "https://api.itick.org/stock/info?type=stock&region=<region>&code=<code>" \
  -H "accept: application/json" \
  -H "token: $ITICK_API_TOKEN"
```

响应参数示例:

```json
 {
  "code": 0, //响应code
  "msg": "ok", //响应描述
  "data": { //响应结果
    "c": "AAPL", //股票代码
    "n": "Apple Inc.", //股票名称
    "t": "stock", //类型
    "e": "NASDAQ", //交易所
    "s": "Electronic Technology", //所属板块
    "i": "Telecommunications Equipment", //所属行业
    "r": "USD", //区域/国家代码
    "bd": "Apple, Inc. engages in the design, manufacture, and sale of smartphones, personal computers, tablets, wearables and accessories, and other varieties of related services. It operates through the following geographical segments: Americas, Europe, Greater China, Japan, and Rest of Asia Pacific. The Americas segment includes North and South America. The Europe segment consists of European countries, as well as India, the Middle East, and Africa. The Greater China segment comprises China, Hong Kong, and Taiwan. The Rest of Asia Pacific segment includes Australia and Asian countries. Its products and services include iPhone, Mac, iPad, AirPods, Apple TV, Apple Watch, Beats products, AppleCare, iCloud, digital content stores, streaming, and licensing services. The company was founded by Steven Paul Jobs, Ronald Gerald Wayne, and Stephen G. Wozniak in April 1976 and is headquartered in Cupertino, CA.", //公司简介
    "wu": "http://www.apple.com", //公司网站URL
    "mcb": 3436885784335, //总市值
    "tso": 14840389413, //总股本
    "pet": 35.3865799154784, //市盈率
    "fcc": "USD" //货币代码
  }
}
```

## 2. 股票IPO

```bash
curl -X GET "https://api.itick.org/stock/ipo?type=<type>&region=<region>" \
  -H "accept: application/json" \
  -H "tok...

Related Claw Skills