post
https://api.bavest.co/v0/price
The Endpoint returns the price of a stock, etf or mutual fund.
This API endpoint is currently in beta. Please note that its functionality, response format, or stability may change as we continue to improve and refine the service. We recommend using it carefully in production environments and providing feedback if you encounter issues.
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
isin | string | optional | International Securities Identification Number. May be used alone or together with exchange. Must not be combined with symbol if you also want to specify an exchange. |
symbol | string | optional | Exchange-specific trading symbol. If provided, exchange becomes required. |
exchange | string | conditional | Required when symbol is provided. Optional when used with isin alone. Must not be provided if both isin and symbol are absent. |
currency | string | optional | Desired currency for the returned instrument data. |
Parameter Rules
- A request must include either
isinorsymbol. - If symbol is provided → exchange is required.
- If isin is provided and symbol is not provided →
exchangemay be included optionally. - If isin and symbol are both provided →
symboltakes priority for resolution;exchangebecomes optional but allowed. - If neither
isinnorsymbolis provided → request is invalid.
Example Request
{
"isin": "GB00BN44P254",
"currency": "EUR",
"exchange": "LSE"
}