GET
/
wrapped-assets
/
{wrapped_asset_id}
/
conversion-rate
curl --request GET \
  --url https://api.exchange.coinbase.com/wrapped-assets/{wrapped_asset_id}/conversion-rate
{
  "amount": "1.006081377449935752"
}

Testing

You can test the cbETH conversion rate by sending an HTTP GET request to the following URL:

https://api.exchange.coinbase.com/wrapped-assets/CBETH/conversion-rate

Response

200 Success

A successful request responds with HTTP status code 200 (OK) and the JSON response body has the following form:

{
  "amount": "1.001374669367288075"
}

The amount field in the response body is the number of ETH2 units that can be exchanged for 1 cbETH.

429 Failure

This endpoint can be queried at most once a second.

If queried more than once a second, the failed request responds with HTTP status code 429 (Too Many Requests) and the JSON response body has the following form:

{
  "message": "Public rate limit exceeded"
}

Coinbase recommends that you repeatedly query the API, sleeping 1 second in between queries, to get conversion rate updates (currently updated 1x a day) as soon as possible without exceeding the rate limit.

Path Parameters

wrapped_asset_id
string
required

Response

200
application/json

The response is of type object.