cURL
curl --request GET \ --url https://api.aisa.one/apis/v1/financial/prices/snapshot \ --header 'Authorization: Bearer <token>'
{ "snapshot": { "price": 123, "ticker": "<string>", "day_change": 123, "day_change_percent": 123, "market_cap": 123, "time": "<string>", "time_milliseconds": 123 } }
Real-time price snapshot for a stock — current price, day change, and day change percent.
curl -X GET "https://api.aisa.one/apis/v1/financial/prices/snapshot?ticker=AAPL" \ -H "Authorization: Bearer $AISA_API_KEY"
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The stock ticker symbol (e.g. AAPL, MSFT).
Price snapshot response
Show child attributes