Products
Get single product
REST API
- Introduction
- Requests
- Authentication
- Rate Limits
- Pagination
- Profiles
- Types
- Accounts
- Address Book
- Coinbase Accounts
- Conversions
- Currencies
- Fees
- Futures
- Loan
- Orders
- Products
- Profiles
- Reports
- Transfers
- Travel Rules
- Users
- Wrapped Assets
FIX API
Products
Get single product
Get information on a single product.
GET
/
products
/
{product_id}
Copy
Ask AI
curl --request GET \
--url https://api.exchange.coinbase.com/products/{product_id}
Copy
Ask AI
{
"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
}
Path Parameters
Response
200
application/json
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://api.exchange.coinbase.com/products/{product_id}
Copy
Ask AI
{
"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
}
Assistant
Responses are generated using AI and may contain mistakes.