# Latest price (High demand) The latest price endpoint provides the latest market price for a specified financial instrument. It returns a single data point representing the current (or the most recently available) trading price. **API credits cost:** `1` per symbol ## Parameters - `symbol` (string, optional, see notes) Symbol ticker of the instrument - `figi` (string, optional, see notes) Filter by financial instrument global identifier (FIGI). This request parameter is available starting with the Ultra plan - `isin` (string, optional, see notes) Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section - `cusip` (string, optional, see notes) The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section - `exchange` (string, optional) Exchange where instrument is traded - `mic_code` (string, optional) Market Identifier Code (MIC) under ISO 10383 standard - `country` (string, optional) Country where instrument is traded, e.g., `United States` or `US` - `type` (string, optional) The asset class to which the instrument belongs - `format` (string, optional) Value can be JSON or CSV - `delimiter` (string, optional) Specify the delimiter used when downloading the CSV file - `prepost` (boolean, optional) Parameter is optional. Only for Pro and above plans. Available at the `1min`, `5min`, `15min`, and `30min` intervals for US equities. Open, high, low, close values are supplied without volume. - `dp` (integer, optional) Specifies the number of decimal places for floating values. Should be in range [0,11] inclusive **Notes:** - At least one of the following parameters is required: `symbol`, `figi`, `isin`, `cusip`. ## Response - `` (object) - `price` (string) Real-time or the latest available price ## Example Request ```bash curl "https://api.twelvedata.com/price?symbol=AAPL&apikey=demo" ``` ## Example Response ```json { "price": "200.99001" } ```