有没有办法使用 Coinbase API 获取以太坊价格数据?

Is there a way to get Ethereum price data using the Coinbase API?

有没有办法使用 Coinbase API 获取以太坊价格数据?我查看了 documentation,我只看到了一种获取比特币价格数据的方法。

感谢 Roland Starke 找到了答案。

有兴趣的可以参考:https://api.coinbase.com/v2/prices/ETH-USD/spot

这是获取任何加密货币价格的 curl

curl https://api.coinbase.com/v2/prices/ETH-USD/spot

如果您想要其他加密货币价格更改 ETH-USD 以获得其他东西。您也可以更改 /spot 进行买卖:

curl https://api.coinbase.com/v2/prices/ETH-USD/buy
curl https://api.coinbase.com/v2/prices/ETH-USD/sell

您将收到 json 数据的回复,例如:

{"data":{"base":"ETH","currency":"USD","amount":"3254.6"}}