Documentation Index
Fetch the complete documentation index at: https://docs.stratalerts.com/llms.txt
Use this file to discover all available pages before exploring further.
Fetch the latest trade prices for symbols
The latest prices endpoint returns the most recent trade data for a batch of symbols. You must specify at least one symbol — the request returns a400 error otherwise. Results are keyed by symbol and include price, volume, and any additional fields captured from the last trade event.
GET https://app.stratalerts.com/api/market/v1/prices/latest
Requires scope:
prices:readRequest parameters
Comma-separated list of ticker symbols (e.g.,
AAPL,MSFT,SPY). Symbols are normalized to uppercase. Maximum 250. At least one symbol is required — omitting this parameter returns a 400 error.Response fields
Array of price objects, one per symbol that has a recent trade on record. Symbols with no recorded trade are omitted from the response.
Code examples
Example response
Error codes
| HTTP status | Error code | Meaning |
|---|---|---|
| 400 | missing_symbols | The symbols query parameter was not provided or is empty. |
| 401 | missing_api_key | No API key was provided or the key format is invalid. |
| 403 | inactive_entitlement | Your account does not have an active API entitlement. |
| 403 | missing_scope | Your API key does not have the prices:read scope. |