Get information on a single product.
curl --request GET \
--url https://api.exchange.coinbase.com/products/{product_id}
{
"id": "BTC-USD",
"base_currency": "BTC",
"quote_currency": "USD",
"quote_increment": "0.01000000",
"base_increment": "0.00000001",
"display_name": "BTC/USD",
"min_market_funds": "10",
"margin_enabled": false,
"post_only": false,
"limit_only": false,
"cancel_only": false,
"status": "online",
"status_message": "",
"auction_mode": true
}
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.exchange.coinbase.com/products/{product_id}
{
"id": "BTC-USD",
"base_currency": "BTC",
"quote_currency": "USD",
"quote_increment": "0.01000000",
"base_increment": "0.00000001",
"display_name": "BTC/USD",
"min_market_funds": "10",
"margin_enabled": false,
"post_only": false,
"limit_only": false,
"cancel_only": false,
"status": "online",
"status_message": "",
"auction_mode": true
}