API Documentation
Access real-time and historical market data with easy-to-integrate RESTful endpoints.

Products

high demand High demand

Endpoint

5 endpoint(s) for Us Stocks
Search Icon
  • Stock Last Quote
  • Stock Last Trade
  • Stock Market Aggregates API
  • Stock Market Previous Close
  • Stock Snapshot API

Stock Snapshot API

Stock Snapshot API will give you access to all U.S Market with one single API request. You can get the latest trades, quotes or both of them with one request.

URL Schema

https://api.finage.co.uk/snapshot/stock?apikey=YOUR_API_KEY

Example Request

https://api.finage.co.uk/snapshot/stock?quotes=true&trades=true&symbols=AAPL&apikey=YOUR_API_KEY

Example Output

{
  "totalResults": 1,
  "lastQuotes": [
{
      "s": "AAPL",
      "a": 215.604252,
      "b": 215.407484,
      "asz": 1,
      "bsz": 5,
      "t": 1726494971049
    }
  ],
  "lastTrades": [
{
      "s": "AAPL",
      "p": 215.505522,
      "sz": 1,
      "t": 1726494971049
    }
  ]
}

Input Parameters (* required field)

  • * quotesEnable or disable last quotes. Default is true.
  • * tradesEnable or disable last trades. Default is false.
  • * symbolsYou can get the data from specific symbols by using this query. If you leave it empty, you will get the all available last data. (Separate symbols with commas.)

Output Parameters

  • sStock symbol
  • pLast trade price
  • aLast ask price
  • bLast bid price
  • aszAsk size
  • bszBid size
  • szTrade size
  • tTimestamp (microseconds)
  • totalResultsTotal incoming symbol number.
Crafted, simply, by Finage © 2025 | All rights reserved.