GET
/
api
/
v3
/
brokerage
/
cfm
/
positions
/
{product_id}
curl --request GET \
  --url https://api.coinbase.com/api/v3/brokerage/cfm/positions/{product_id}
{
  "position": {
    "product_id": "<string>",
    "expiration_time": "<string>",
    "side": "<any>",
    "number_of_contracts": "<string>",
    "current_price": "<string>",
    "avg_entry_price": "<string>",
    "unrealized_pnl": "<string>",
    "daily_realized_pnl": "<string>"
  }
}

Path Parameters

product_id
string
required

The ticker symbol (e.g. 'BIT-28JUL23-CDE').

Response

200
application/json

A successful response.

The response is of type object.