> ## Documentation Index
> Fetch the complete documentation index at: https://docs.finterm.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Current Stock Prices

> Latest available price for one or more stock symbols, delayed by up to 15 minutes.

Get the latest available price for one or more stock symbols in a single call.
Prices are the latest available from Finterm’s market-data provider.
They are delayed by up to 15 minutes depending on provider plan and exchange
entitlements.
Returns one price per requested symbol; historical dates are not supported.

**Endpoint:** `POST /api/v1/prices/current`

**Tier:** point · **Delivery:** sync

## Request

| Field     | Type       |
| --------- | ---------- |
| `symbols` | `string[]` |

## Response

The response is the two-key envelope `{ finterm, data }`, where `data` is the `finterm.result:StockPricesCurrent/v1` contract:

| Field    | Description                                                                                                                          |
| -------- | ------------------------------------------------------------------------------------------------------------------------------------ |
| `ticker` | The stock ticker symbol, uppercased (e.g. "AAPL").                                                                                   |
| `price`  | The latest available price for the symbol, in USD. Delayed by up to 15 minutes depending on provider plan and exchange entitlements. |

For a single requested symbol, `data` is one object with the fields above; for multiple symbols, it is a map keyed by requested symbol, one object per symbol.

## Example

```bash theme={"system"}
finterm tool stock_prices_current NVDA AAPL
```
