2.1k★by noypearl
yahoo-data-fetcher – OpenClaw Skill
yahoo-data-fetcher is an OpenClaw Skills integration for coding workflows. Fetch real-time stock quotes from Yahoo Finance.
Skill Snapshot
| name | yahoo-data-fetcher |
| description | Fetch real-time stock quotes from Yahoo Finance. OpenClaw Skills integration. |
| owner | noypearl |
| repository | noypearl/yahoo-data-fetcher |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @noypearl/yahoo-data-fetcher |
| last updated | Feb 7, 2026 |
Maintainer

name: yahoo-data-fetcher description: Fetch real-time stock quotes from Yahoo Finance. user-invocable: true metadata: moltbot: emoji: "📈" requires: bins: ["node"] homepage: https://query1.finance.yahoo.com/v7/finance/quote
Yahoo Data Fetcher – Stock Quote
Get current stock price data from Yahoo Finance.
This skill fetches the latest market quote for one or more stock symbols and returns normalized JSON output.
Command
/stock quote
Fetch the latest quote for one or more stock symbols.
Input
symbols(string or array of strings)
Examples:
"AAPL""AAPL MSFT TSLA""AAPL,MSFT,TSLA"["AAPL", "MSFT"]{ "symbols": ["AAPL", "MSFT"] }
Output
For each symbol:
symbol– stock tickerprice– latest market pricechange– absolute price changechangePercent– percentage changecurrency– trading currencymarketState– market status (e.g.REGULAR,CLOSED)
Example output:
[
{
"symbol": "AAPL",
"price": 189.12,
"change": 1.23,
"changePercent": 0.65,
"currency": "USD",
"marketState": "REGULAR"
}
]
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install yahoo-data-fetcher?
Run openclaw add @noypearl/yahoo-data-fetcher in your terminal. This installs yahoo-data-fetcher into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/noypearl/yahoo-data-fetcher. Review commits and README documentation before installing.
