返回顶部
A

AIsaFinancialDataAI金融数据

Query real-time and historical financial data across equities and crypto—prices, market moves, metrics, and trends for analysis, alerts, and reporting.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
1,262
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

AIsaFinancialData

OpenClaw Market 📊

为自主智能体提供的完整市场数据。由AIsa驱动。

一个API密钥。股票+加密货币+财务数据。您所需的一切。

🔥 您可以做什么?

跨资产投资组合

获取我的投资组合中BTC、ETH价格以及AAPL、NVDA股票数据

投资研究

全面分析:NVDA价格趋势、内幕交易、分析师预估、SEC文件

加密货币追踪

BTC、ETH、SOL实时价格及30天历史图表

财报分析

获取特斯拉财报、分析师预估及价格反应

市场筛选

寻找市盈率<15且营收增长>20%的股票

大户追踪

追踪苹果内幕交易并与价格走势关联

快速开始

bash
export AISAAPIKEY=your-key



🏦 传统金融

股票价格

bash

历史价格数据(日线)


curl https://api.aisa.one/apis/v1/financial/prices?ticker=AAPL&interval=day&intervalmultiplier=1&startdate=2025-01-01&end_date=2025-12-31 \
-H Authorization: Bearer $AISAAPIKEY

周线价格数据

curl https://api.aisa.one/apis/v1/financial/prices?ticker=AAPL&interval=week&intervalmultiplier=1&startdate=2025-01-01&end_date=2025-12-31 \ -H Authorization: Bearer $AISAAPIKEY

分钟级数据(日内)

curl https://api.aisa.one/apis/v1/financial/prices?ticker=AAPL&interval=minute&intervalmultiplier=5&startdate=2025-01-15&end_date=2025-01-15 \ -H Authorization: Bearer $AISAAPIKEY

参数:

  • - ticker:股票代码(必填)
  • interval:second、minute、day、week、month、year(必填)
  • intervalmultiplier:时间间隔倍数,例如5表示5分钟K线(必填)
  • startdate:开始日期 YYYY-MM-DD(必填)
  • end_date:结束日期 YYYY-MM-DD(必填)

公司新闻

bash

按股票代码获取新闻


curl https://api.aisa.one/apis/v1/financial/news?ticker=AAPL&limit=10 \
-H Authorization: Bearer $AISAAPIKEY

财务报表

bash

所有财务报表


curl https://api.aisa.one/apis/v1/financial/financial_statements/all?ticker=AAPL \
-H Authorization: Bearer $AISAAPIKEY

利润表

curl https://api.aisa.one/apis/v1/financial/financial_statements/income?ticker=AAPL \ -H Authorization: Bearer $AISAAPIKEY

资产负债表

curl https://api.aisa.one/apis/v1/financial/financial_statements/balance?ticker=AAPL \ -H Authorization: Bearer $AISAAPIKEY

现金流量表

curl https://api.aisa.one/apis/v1/financial/financial_statements/cash?ticker=AAPL \ -H Authorization: Bearer $AISAAPIKEY

财务指标

bash

实时财务指标快照


curl https://api.aisa.one/apis/v1/financial/financial-metrics/snapshot?ticker=AAPL \
-H Authorization: Bearer $AISAAPIKEY

历史财务指标

curl https://api.aisa.one/apis/v1/financial/financial-metrics?ticker=AAPL \ -H Authorization: Bearer $AISAAPIKEY

分析师预估

bash

每股收益预估


curl https://api.aisa.one/apis/v1/financial/analyst/eps?ticker=AAPL&period=annual \
-H Authorization: Bearer $AISAAPIKEY

内幕交易

bash

获取内幕交易


curl https://api.aisa.one/apis/v1/financial/insider/trades?ticker=AAPL \
-H Authorization: Bearer $AISAAPIKEY

机构持仓

bash

获取机构持仓


curl https://api.aisa.one/apis/v1/financial/institutional/ownership?ticker=AAPL \
-H Authorization: Bearer $AISAAPIKEY

SEC文件

bash

获取SEC文件


curl https://api.aisa.one/apis/v1/financial/sec/filings?ticker=AAPL \
-H Authorization: Bearer $AISAAPIKEY

获取SEC文件条目

curl https://api.aisa.one/apis/v1/financial/sec/items?ticker=AAPL \ -H Authorization: Bearer $AISAAPIKEY

公司信息

bash

按CIK获取公司信息


curl https://api.aisa.one/apis/v1/financial/company/facts?ticker=AAPL \
-H Authorization: Bearer $AISAAPIKEY

股票筛选器

bash

筛选符合条件的股票


curl -X POST https://api.aisa.one/apis/v1/financial/search/stock \
-H Authorization: Bearer $AISAAPIKEY \
-H Content-Type: application/json \
-d {filters:{peratio:{max:15},revenuegrowth:{min:0.2}}}

利率

bash

当前利率


curl https://api.aisa.one/apis/v1/financial/interest_rates/snapshot \
-H Authorization: Bearer $AISAAPIKEY

历史利率

curl https://api.aisa.one/apis/v1/financial/interest_rates/historical?bank=fed \ -H Authorization: Bearer $AISAAPIKEY

₿ 加密货币

实时价格快照

bash

获取当前BTC价格(使用代码格式:SYMBOL-USD)


curl https://api.aisa.one/apis/v1/financial/crypto/prices/snapshot?ticker=BTC-USD \
-H Authorization: Bearer $AISAAPIKEY

获取当前ETH价格

curl https://api.aisa.one/apis/v1/financial/crypto/prices/snapshot?ticker=ETH-USD \ -H Authorization: Bearer $AISAAPIKEY

获取当前SOL价格

curl https://api.aisa.one/apis/v1/financial/crypto/prices/snapshot?ticker=SOL-USD \ -H Authorization: Bearer $AISAAPIKEY

获取TRUMP代币价格

curl https://api.aisa.one/apis/v1/financial/crypto/prices/snapshot?ticker=TRUMP-USD \ -H Authorization: Bearer $AISAAPIKEY

注意: 加密货币代码使用SYMBOL-USD格式(例如BTC-USD、ETH-USD)。

历史价格数据

bash

获取BTC历史价格(日线)


curl https://api.aisa.one/apis/v1/financial/crypto/prices?ticker=BTC-USD&interval=day&intervalmultiplier=1&startdate=2025-01-01&end_date=2025-01-31 \
-H Authorization: Bearer $AISAAPIKEY

获取ETH小时数据

curl https://api.aisa.one/apis/v1/financial/crypto/prices?ticker=ETH-USD&interval=minute&intervalmultiplier=60&startdate=2025-01-15&end_date=2025-01-16 \ -H Authorization: Bearer $AISAAPIKEY

支持的加密货币

代码名称
BTC-USD比特币
ETH-USD
以太坊 | | SOL-USD | 索拉纳 | | BNB

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 aisa-financial-data-api-1776361095 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 aisa-financial-data-api-1776361095 技能

通过命令行安装

skillhub install aisa-financial-data-api-1776361095

下载

⬇ 下载 AIsaFinancialData v1.0.0(免费)

文件大小: 7.59 KB | 发布时间: 2026-4-17 14:04

v1.0.0 最新 2026-4-17 14:04
- Removed the README.md file from the project.
- No other user-facing changes or updates in functionality.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部