stock-prices

Fetch real-time stock quotes for up to 50 symbols per request.

1|Updated Jan 30, 2026
One-click install
npx skills add https://github.com/anthonylee1994/stock-prices --skill stock-prices
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: stock-prices
Source: https://github.com/anthonylee1994/stock-prices/tree/main
Command: npx skills add https://github.com/anthonylee1994/stock-prices --skill stock-prices

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Real-time stock quotes and market data are often scattered across services; this skill provides a simple API to fetch up-to-date quotes for multiple symbols in a single request.

Core Features & Use Cases

  • Multi-symbol quotes: Retrieve quotes for one or more ticker symbols in a single call.
  • Real-time data fields: Returns currentPrice, change, percentChange, highPrice, lowPrice, openPrice, and related market data for quick analytics.
  • Use cases: Build dashboards, monitor portfolios, or generate alerts based on price movements.

Quick Start

Query quotes for one or more symbols using the /quotes endpoint.

Frequently Asked Questions about stock-prices

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fetch real-time stock quotes for multiple ticker symbols in a single API request?▼

To fetch real-time stock quotes for multiple ticker symbols, query the /quotes endpoint with up to 50 symbols per request. The API returns a consistent JSON structure containing currentPrice, change, and percentChange for market monitoring.

What stock market data fields are included in the real-time quotes JSON response?▼

The real-time quotes JSON response includes currentPrice, change, percentChange, highPrice, lowPrice, and openPrice fields. This market data structure supports quick analytics for portfolio dashboards and price movement alerts.

Can I use curl to retrieve real-time market data for a portfolio monitoring application?▼

You can use curl to retrieve real-time market data for portfolio monitoring by calling the API to fetch quotes. It supports fetching single or multi-symbol quote data, returning concise JSON fields like currentPrice and percentChange.

Does the stock prices API handle missing ticker symbols or invalid market data requests?▼

The stock prices API includes error handling for missing symbols within your multi-symbol requests. This ensures your application receives a consistent JSON structure even when querying invalid or unsupported market data tickers.

What is the maximum number of ticker symbols I can query for real-time stock prices?▼

You can query real-time stock prices for up to 50 ticker symbols per single API request. This multi-symbol support allows you to efficiently fetch market data and generate market summaries for portfolio monitoring.

How do I build a market dashboard using real-time stock price API responses?▼

Build a market dashboard by fetching real-time stock quotes via the API and parsing the returned JSON fields like currentPrice, highPrice, and lowPrice. This provides the up-to-date market data needed for quick analytics and alerts.