Stock Price API
Free, real-time stock data. No auth. No limits.
A minimal JSON API for fetching current stock prices. Designed for developers who need quick access to market data without having to create an account or use any type of authentication.
Usage
Fetch the current price for a specific ticker symbol.
Endpoints
Select the appropriate endpoint based on the instrument type:
/api/stocks/:ticker- For companies (e.g. AAPL, NVDA)/api/etfs/:ticker- For ETFs (e.g. VOO, QQQ)
Example Requests
GET "https://stockprices.dev/api/stocks/AAPL"
GET "https://stockprices.dev/api/etfs/VOO"
Success Response
{
"Ticker": "GOOGL",
"Name": "Alphabet Inc.",
"Price": 313.25,
"ChangeAmount": -0.85,
"ChangePercentage": -0.27
}