# Tool Nasdaq Quote

> Use the nasdaq_quote tool to fetch a US equity quote (free; delayed) with lightweight caching and latency metadata.

- Skill: `captaindpt/tool-nasdaq-quote` (Agent Skill)
- Install (CLI): `npx skillmds@latest add captaindpt/tool-nasdaq-quote`
- Raw SKILL.md: https://api.skillmd.com/api/skills/captaindpt/tool-nasdaq-quote/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: captaindpt (https://skillmd.com/u/captaindpt)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/captaindpt/tool-nasdaq-quote

---


# nasdaq_quote (Nasdaq quote)

## When to use

- Lightweight US stock quote (price/change/%change) for dashboarding or quick checks.

## Parameters

- `symbol` (string, required): e.g. `"AAPL"`. Allowed: `[A-Z0-9.\\-=_^]{1,15}`

## Examples

```json
{ "name": "nasdaq_quote", "params": { "symbol": "AAPL" } }
```

## Output

- Returns: `{ quote: { symbol,name,exchange,currency,price,change,changePercent,marketCap,time }, meta: { cached,durationMs,timeoutMs } }`
- Rendered:
  - `Meta` (text: cached/durationMs)
  - `Quote` (table)

## Notes

- Data is typically delayed (~15m) and can rate-limit; treat as “good enough” not authoritative.
- `targetWindow`: `des`


