---
title: "Get market quote for a symbol"
method: GET
path: "/rest/api/v1/accounts/{accountId}/quote/{symbol}"
tags: ["Trading API"]
---

# Get market quote for a symbol

`GET /rest/api/v1/accounts/{accountId}/quote/{symbol}`

Fetches the current bid price, ask price, and timestamp for a specific trading symbol. Note: Not all platforms support real-time quote fetching. If there is no response or an error is returned, it means the platform does not support this feature.

Set `includeSymbolInfo=true` to also receive the symbol details (points, digits, volume limits) in the same response, which avoids a second call to `/accounts/{accountId}/symbols/{symbol}`.

## Path parameters

- `accountId` string, uuid, required
- `symbol` string, required

## Query parameters

- `includeSymbolInfo` boolean

## Response `200`

OK

- MarketQuoteDTO
  - `ask` number — Ask price
  - `bid` number — Bid price
  - `symbol` string — Symbol name
  - `symbolInfo` SymbolDTO
    - `baseCurrency` string
    - `digits` integer
    - `disabled` boolean
    - `lotSize` integer
    - `maximalVolume` number, double
    - `minimalVolume` number, double
    - `name` string
    - `points` number, double
    - `quoteCurrency` string
    - `stepVolume` number, double
    - `tradeType` 'REQUEST' | 'INSTANT' | 'MARKET' | 'ECHANGE'
  - `timestamp` string, date-time — Quote timestamp (ISO 8601)

---

[API](https://skmtc.net/metacopier/apis/metacopier-api.md) · [All operations](https://skmtc.net/metacopier/apis/metacopier-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/metacopier/metacopier-api/revisions/ff1699330afa/schema)
