skills$openclaw/yahoo-data-fetcher
noypearl2.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.

2.1k stars3.8k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameyahoo-data-fetcher
descriptionFetch real-time stock quotes from Yahoo Finance. OpenClaw Skills integration.
ownernoypearl
repositorynoypearl/yahoo-data-fetcher
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @noypearl/yahoo-data-fetcher
last updatedFeb 7, 2026

Maintainer

noypearl

noypearl

Maintains yahoo-data-fetcher in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
_meta.json
652 B
index.js
2.4 KB
package.json
105 B
SKILL.md
1.1 KB
SKILL.md

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 ticker
  • price – latest market price
  • change – absolute price change
  • changePercent – percentage change
  • currency – trading currency
  • marketState – market status (e.g. REGULAR, CLOSED)

Example output:

[
  {
    "symbol": "AAPL",
    "price": 189.12,
    "change": 1.23,
    "changePercent": 0.65,
    "currency": "USD",
    "marketState": "REGULAR"
  }
]
README.md

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.