Skip to main content
GET
/
api
/
v1
/
instruments
/
{instrument}
/
quote
Get quote per instrument
curl --request GET \
  --url https://api.international.coinbase.com/api/v1/instruments/{instrument}/quote
{
  "best_bid_price": 20000.5,
  "best_bid_size": 3.541424,
  "best_ask_price": 20001.75,
  "best_ask_size": 2.8754,
  "trade_price": 20000.63,
  "trade_qty": 0.73,
  "index_price": 20001.45,
  "mark_price": 20000.63,
  "settlement_price": 20000.23,
  "limit_up": 21056.35,
  "limit_down": 19531.5,
  "predicted_funding": 0.1543,
  "timestamp": "2023-11-07T05:31:56Z"
}
  • Java
  • .NET
  • Go
  • Python
  • TS/JS
  • CLI
InstrumentsService instrumentsService = IntxServiceFactory.createInstrumentsService(client);
GetInstrumentQuoteRequest request = new GetInstrumentQuoteRequest.Builder()
    .instrumentId("BTC-PERP")
    .build();
GetInstrumentQuoteResponse response = instrumentsService.getInstrumentQuote(request);
For more information, please visit the INTX Java SDK.

Path Parameters

instrument
string
required

Response

best_bid_price
string
Example:
best_bid_size
string
Example:
best_ask_price
string
Example:
best_ask_size
string
Example:
trade_price
string
Example:
trade_qty
string
Example:
index_price
string
Example:
mark_price
string
Example:
settlement_price
string
Example:
limit_up
string
Example:
limit_down
string
Example:
predicted_funding
string
Example:
timestamp
string<date-time>