### Get Stock Last Quote Example Source: https://finage.co.uk/docs/api Retrieve the last quote for a specific stock symbol. Ensure you replace YOUR_API_KEY with your actual API key and specify the stock symbol. ```HTTP https://api.finage.co.uk/last/stock/AAPL?apikey=YOUR_API_KEY ``` -------------------------------- ### Stock Last Quote API Output Example Source: https://finage.co.uk/docs/api This is an example of the JSON output received when requesting the last quote for a stock symbol. ```JSON { "symbol": "AAPL", "ask": 118.55, "bid": 118.53, "asize": 3, "bsize": 1, "timestamp": 1604710766331 } ``` -------------------------------- ### Stock Last Quote Source: https://finage.co.uk/docs/api Get the last quote for a stock symbol. ```APIDOC ## Stock Last Quote ### Description Get the last quote for a symbol with this endpoint. ### Method GET ### Endpoint https://api.finage.co.uk/last/stock/{ symbol }?apikey=YOUR_API_KEY ### Parameters #### Path Parameters - **symbol** (string) - Required - Symbol Name (eg: AAPL) #### Query Parameters - **apikey** (string) - Required - Your API Key ### Request Example https://api.finage.co.uk/last/stock/AAPL?apikey=YOUR_API_KEY ### Response #### Success Response (200) - **symbol** (string) - Symbol Name - **ask** (number) - Ask Price - **bid** (number) - Bid Price - **asize** (integer) - Ask Size - **bsize** (integer) - Bid Size - **timestamp** (integer) - Last Update Time #### Response Example ```json { "symbol": "AAPL", "ask": 118.55, "bid": 118.53, "asize": 3, "bsize": 1, "timestamp": 1604710766331 } ``` ``` -------------------------------- ### Stock Last Quote Source: https://finage.co.uk/docs/api/us-stocks/stock-last-quote Get the last quote for a stock symbol. This endpoint returns the current ask and bid prices, along with their respective sizes and the timestamp of the last update. ```APIDOC ## GET /last/stock/{symbol} ### Description Retrieves the last quote information for a specified stock symbol, including ask price, bid price, ask size, bid size, and the last update timestamp. ### Method GET ### Endpoint /last/stock/{symbol} ### Parameters #### Path Parameters - **symbol** (string) - Required - The stock symbol for which to retrieve the quote (e.g., AAPL). #### Query Parameters - **apikey** (string) - Required - Your unique API key for authentication. ### Response #### Success Response (200) - **symbol** (string) - The stock symbol. - **ask** (number) - The current ask price. - **bid** (number) - The current bid price. - **asize** (integer) - The size of the ask. - **bsize** (integer) - The size of the bid. - **timestamp** (integer) - The timestamp of the last update in milliseconds. #### Response Example ```json { "symbol": "AAPL", "ask": 118.55, "bid": 118.53, "asize": 3, "bsize": 1, "timestamp": 1604710766331 } ``` ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.