← Back to Skills Marketplace
finskills

finskills-one

by finskills · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
27
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install finskills-one
Description
One-stop access to real-time financial data via the Finskills REST API at https://finskills.net. Covers stocks (quotes, history, fundamentals, options, holde...
README (SKILL.md)

FinSkills One — Unified Financial Data

Use the Finskills REST API (https://finskills.net) as the single entry point for all financial data: stocks, crypto, forex, macro, commodities, news, SEC filings, ETFs, analyst ratings, alternative data (Congress / insider / WSB).

This skill consolidates 80+ endpoints behind one API key, with automatic multi-source fallback (Yahoo Finance, CoinGecko, FRED, World Bank, SEC EDGAR, Frankfurter, FDIC, FEMA, etc.) and a unified response envelope.


Authentication

All requests require the X-API-Key header. If the user has not provided one, ask for it, then point them to https://finskills.net/register.

GET /v1/free/crypto/price/bitcoin HTTP/1.1
Host: finskills.net
X-API-Key: fh_live_xxxxxxxxxxxxxxxxxxxx

Base URL: https://finskills.net

Unified response envelope for every endpoint:

{
  "success": true,
  "data": { ... },
  "source": "yahoo|coingecko|fred|...",
  "sources": ["primary", "fallback"],
  "cached": false,
  "timestamp": "2026-05-09T12:34:56.000Z"
}

On error: { "success": false, "error": { "code": "...", "message": "..." } }. HTTP status mirrors the failure (401 missing/invalid key, 403 quota, 404 symbol unknown, 429 rate-limited, 5xx upstream).


Decision Guide — pick the right endpoint fast

User asks about Go to
Real-time stock price / batch quotes references/stocks.md
Historical OHLCV / chart references/stocks.md
Company financials / dividends / earnings / options / holders references/stocks.md
Crypto price / market cap / history references/crypto.md
FX rates / currency conversion references/forex.md
GDP, CPI, rates, treasury, FRED series references/macro.md
Indices, sectors, top gainers/losers, breadth, fear-greed, VIX references/market.md
Oil, gold, wheat, BDI, FRED/IMF commodity series references/commodity.md
News headlines, news per ticker references/news.md
10-K / 10-Q / 8-K / company facts / insider trades / 13F references/sec.md
Analyst ratings, price targets, Congress trades, WSB sentiment, earnings calendar, short volume, Fama-French references/quant.md
ETF holdings & list references/etf.md
FDIC bank search, BIN/IIN, FEMA disasters references/other.md
Common patterns (compare, snapshot, screener) references/workflows.md

Prefer /v1/free/... whenever the data exists there — it requires no third-party subscription. Fall back to /v1/... (premium-routed) only when the free variant does not cover the use case.


Quick Capability Map (entire surface)

STOCKS              /v1/stocks/{quote, quotes, history, search, profile,
                                financials, dividends, options, holders,
                                recommendations, earnings}/:symbol

CRYPTO              /v1/[free/]crypto/{price/:coin, markets, history/:coin}

FOREX               /v1/free/forex/{rates, history}

MACRO               /v1/free/macro/{gdp[/:country], indicator/:code,
                                    treasury-rates, inflation}
                    /v1/macro/{indicator/:series, gdp, inflation,
                               interest-rates}

MARKET              /v1/market/{summary, sectors, indices, indices/historical,
                                top-gainers, top-losers, advance-decline,
                                fear-greed, movers, news}
                    /v1/free/market/{sectors, top-gainers, top-losers,
                                      most-active, indices, advance-decline,
                                      fear-greed, vix, movers, news,
                                      breadth, short-volume/:sym,
                                      short-volume-top, earnings-calendar,
                                      fama-french}

NEWS                /v1/free/news/finance
                    /v1/news/{latest, by-symbol/:symbol}

SEC                 /v1/free/sec/{filings/:cik, company-facts/:cik,
                                  insider-trades/:symbol, insider-summary/:symbol,
                                  ownership/:symbol}

ANALYST / ALT       /v1/free/stocks/{analyst-ratings/:sym,
                                     analyst-rating-summary/:sym,
                                     estimates/:sym,
                                     congress-trades,
                                     insider-trades/:sym,
                                     wsb-sentiment/:sym}

ETF                 /v1/free/etf/{list, holdings/:symbol}

INDEX               /v1/free/index/:index/constituents      (e.g. SP500, NDX)

COMMODITY           /v1/free/commodity/{catalog, prices, price/:sym,
                                        history/:sym, fred[/:series],
                                        imf[/:indicator], imf/batch,
                                        bdi, bdi/history}

BANKING / PAYMENT   /v1/free/banking/search
                    /v1/free/payment/bin/:bin

DISASTER            /v1/free/fema/disasters

Universal Usage Rules

  • Always include X-API-Key. Never log it back to the user verbatim — refer to it as "your API key".
  • For crypto, use CoinGecko coin IDs (bitcoin, ethereum, solana), not tickers (BTC, ETH).
  • For stocks, use standard tickers (AAPL, BRK-B, MSFT). Hong Kong: 0700.HK. Tokyo: 7203.T.
  • For SEC, use the CIK as a string with leading zeros stripped or padded to 10 (the API accepts both): 320193 or 0000320193.
  • For commodities, use Yahoo futures tickers: CL=F (WTI), GC=F (gold), SI=F (silver), ZW=F (wheat), NG=F (natgas), HG=F (copper).
  • For FRED series in macro/commodity, capitalize: GDP, CPIAUCSL, FEDFUNDS, UNRATE, DCOILWTICO.
  • For history endpoints, supported range: 1d, 5d, 1mo, 3mo, 6mo, 1y, 2y, 5y, 10y, ytd, max; interval: 1m, 5m, 15m, 30m, 1h, 1d, 1wk, 1mo.
  • Always show units (USD, %, bps) and freshness (timestamp / cached) when presenting values to the user.
  • Format large numbers with thousands separators ($1,234,567.89).
  • Never make investment recommendations. Present data factually and add a brief "this is data, not advice" caveat for non-trivial questions.
  • When the user asks a comparative or multi-asset question, fan out calls in parallel and merge results client-side.
  • If a /v1/free/... call fails, retry once with the matching /v1/... path before giving up.

Helper Scripts

A small Python client lives in scripts/:

  • scripts/finskills_client.py — typed minimal HTTP client (sync + async) covering every endpoint group.
  • scripts/quote.py — CLI: python scripts/quote.py AAPL TSLA NVDA → live quotes.
  • scripts/snapshot.py — CLI: python scripts/snapshot.py AAPL → quote + analysts + insiders + news + filings in one report.
  • scripts/screener.py — CLI: python scripts/screener.py --top-gainers 25 → market mover screening.

All scripts read FINSKILLS_API_KEY from env. Pass --base-url to override.


Detailed References


Example Interactions

Stock snapshot:

"What is Apple's price and analyst consensus?" → GET /v1/stocks/quote/AAPLGET /v1/free/stocks/analyst-rating-summary/AAPL

Crypto comparison:

"Compare BTC and ETH 30-day performance." → parallel GET /v1/free/crypto/history/bitcoin?days=30 and .../ethereum?days=30.

Macro research:

"How has US CPI evolved this year?" → GET /v1/macro/indicator/CPIAUCSL (or /v1/free/macro/inflation?country=US).

Congress / insider activity:

"Are Congress members or insiders trading NVDA?" → GET /v1/free/stocks/congress-trades?symbol=NVDAGET /v1/free/stocks/insider-trades/NVDA.

SEC filing lookup:

"Latest Apple 10-K?" → GET /v1/free/sec/filings/0000320193 (filter type=10-K).

Market overview:

"How are markets doing today?" → GET /v1/market/summaryGET /v1/free/market/sectorsGET /v1/free/market/fear-greed.

ETF X-ray:

"What's inside SPY?" → GET /v1/free/etf/holdings/SPY.

Commodity macro:

"WTI crude price and 1-year trend." → GET /v1/free/commodity/price/CL=FGET /v1/free/commodity/history/CL=F?range=1y&interval=1d.

See references/workflows.md for fuller multi-step examples.

Usage Guidance
Before using this skill, confirm you are comfortable sending financial queries and your Finskills API key to finskills.net. Prefer setting the key in an environment variable, watch any account quota or billing limits, and run the optional Python helpers only in a trusted virtual environment.
Capability Analysis
Type: OpenClaw Skill Name: finskills-one Version: 1.0.0 The finskills-one skill bundle is a comprehensive and well-documented integration for the Finskills financial data API (finskills.net). It includes a clean Python client (finskills_client.py) and several utility scripts for stock quotes, market screening, and ticker snapshots. The instructions in SKILL.md are appropriately scoped, providing clear guidance for the AI agent while explicitly including safety measures such as protecting the user's API key and providing financial advice disclaimers. No evidence of malicious intent, data exfiltration, or harmful prompt injection was found.
Capability Tags
cryptocan-make-purchasesrequires-sensitive-credentials
Capability Assessment
Purpose & Capability
The documented behavior is consistent with the stated purpose: read-only retrieval of market, macro, SEC, news, crypto, ETF, and related financial data through the Finskills API.
Instruction Scope
The skill is broad and tells the agent to use it for many financial-research requests, but the instructions remain aligned with data lookup and summarization rather than account mutation, trading, or destructive actions.
Install Mechanism
There is no automatic install spec, but optional helper scripts ask users to install Python dependencies from requirements.txt. This is user-directed and proportionate, though the dependency is not pinned exactly.
Credentials
The skill requires sending requests and an API key to https://finskills.net, which is expected for this integration. The registry requirements under-declare the API key even though the SKILL.md and scripts disclose it.
Persistence & Privilege
The provided artifacts do not show background persistence, privilege escalation, local data indexing, credential scraping, or mutation of user accounts or files.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install finskills-one
  3. After installation, invoke the skill by name or use /finskills-one
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of FinSkills One — Unified Financial Data. - Provides one-stop access to real-time financial and alternative data via the Finskills REST API. - Supports stocks, crypto, forex, macro data, commodities, ETFs, indices, news, SEC filings, analyst ratings, Congress/influencer trades, banking info, payment BIN lookup, and FEMA disasters. - Features 80+ unified API endpoints with automatic multi-source fallback. - Requires an API key for all requests; guides users to register if needed. - Includes a decision guide and usage rules for accurate endpoint selection and data formatting.
Metadata
Slug finskills-one
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is finskills-one?

One-stop access to real-time financial data via the Finskills REST API at https://finskills.net. Covers stocks (quotes, history, fundamentals, options, holde... It is an AI Agent Skill for Claude Code / OpenClaw, with 27 downloads so far.

How do I install finskills-one?

Run "/install finskills-one" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is finskills-one free?

Yes, finskills-one is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does finskills-one support?

finskills-one is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created finskills-one?

It is built and maintained by finskills (@finskills); the current version is v1.0.0.

💬 Comments