Skip to main content
GET
/
prices
/
snapshot
Price Snapshot (Real-Time)
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 stock price snapshot for a ticker. Returns the current price plus day-over-day change (absolute and percent). Best for: Live price widgets, dashboards, triggering alerts on intraday moves, validating fills, pre-trade price sanity checks.

Example

curl -X GET "https://api.aisa.one/apis/v1/financial/prices/snapshot?ticker=AAPL" \
  -H "Authorization: Bearer $AISA_API_KEY"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

ticker
string
required

The stock ticker symbol (e.g. AAPL, MSFT).

Response

Price snapshot response

snapshot
object