Skip to main content
GET
/
stocks
/
quotes
Last Quotes
curl --request GET \
  --url https://api.tradewatch.io/stocks/quotes \
  --header 'api-key: <api-key>'
{
  "items": [
    {
      "symbol": "<string>",
      "ask": 1.23456,
      "bid": 1.23456,
      "mid": 1.23456,
      "timestamp": 1704882030
    }
  ]
}

Authorizations

api-key
string
header
required

Authentication via API key header

Query Parameters

symbols
string
required

Comma separated list of symbols.

Maximum string length: 50
precision
integer
default:5

The decimal precision of the result.

Response

Successful Response

items
LastQuote · object[]
required