获取美股的最新价格快照
https://api.llmquant.com/prices/equity/snapshot
AAPL
AAPL,MSFT,NVDA
EquitySnapshot
Show EquitySnapshot
import requests headers = {"X-API-KEY": "your_api_key_here"} url = "https://api.llmquant.com/prices/equity/snapshot?ticker=AAPL,MSFT,NVDA" response = requests.get(url, headers=headers) snapshots = response.json().get("snapshots")