GET
/
v1
/
sell
/
options
Get sell options
curl --request GET \
  --url https://api.developer.coinbase.com/onramp/v1/sell/options \
  --header 'Authorization: Bearer <token>'
{
  "cashout_currencies": [
    {
      "id": "<string>",
      "limits": [
        {
          "id": "UNSPECIFIED",
          "max": "<string>",
          "min": "<string>"
        }
      ]
    }
  ],
  "sell_currencies": [
    {
      "icon_url": "<string>",
      "id": "<string>",
      "name": "<string>",
      "networks": [
        {
          "chain_id": 123,
          "contract_address": "<string>",
          "display_name": "<string>",
          "name": "<string>"
        }
      ],
      "symbol": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Enter your JSON Web Token (JWT) here. Refer to the Generate JWT section of our Authentication docs for information on how to generate your Bearer Token.

Query Parameters

country
string
required

The ISO 3166-1 two letter country code e.g. US

subdivision
string

The ISO 3166-2 two letter state code e.g. NY, only required for US

networks
string

Comma-separated list of network names (e.g. ethereum,polygon), available network names are returned in each crypto currency

Response

OK

List of crypto assets available to sell, and fiat currencies that can be cashed out to

cashout_currencies
object[]

List of fiat currencies that can be cashed out to

sell_currencies
object[]

List of crypto currencies that can be sold