Ether の日本円価格を取得
- Ether の日本円価格(レート)を取得する方法です。
- coinmarketcap の API を使用します。
Node.js によるサンプルコード
let https = require('https');
const url = 'https://api.coinmarketcap.com/v2/ticker/1027/?convert=JPY';
https.get(url, (response) => {
response.setEncoding('utf8');
let rawData = '';
response.on('data', (chunk) => { rawData += chunk; });
response.on('end', (response) => {
json = JSON.parse(rawData);
console.log('ETH/JPY', json.data.quotes.JPY.price);
});
}).on('error', (e) => {
console.log(e.message);
});
let https = require('https');
const url = 'https://api.coinmarketcap.com/v2/ticker/1027/?convert=JPY';
https.get(url, (response) => {
response.setEncoding('utf8');
let rawData = '';
response.on('data', (chunk) => { rawData += chunk; });
response.on('end', (response) => {
json = JSON.parse(rawData);
console.log('ETH/JPY', json.data.quotes.JPY.price);
});
}).on('error', (e) => {
console.log(e.message);
});
Author And Source
この問題について(Ether の日本円価格を取得), 我々は、より多くの情報をここで見つけました https://qiita.com/hm0429/items/772cc7d73bb30aad15e0著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .