Alpha Vantage

フリーミアム
Verified
よって Alpha Vantage | 更新済み 17 дней назад | Finance
人気

9.9 / 10

レイテンシー

509ms

サービスレベル

100%

Health Check

N/A

すべてのディスカッションに戻る

Getting invalid API call

Rapid account: Olayiwolaagboolaakanji
olayiwolaagboolaakanji
2 года назад

const options = {
method: ‘GET’,
url: ‘https://alpha-vantage.p.rapidapi.com/query’,

  params: {
    from_currency: 'primaryCurrency',
    function: `CURRENCY_EXCHANGE_RATE`,
    to_currency: 'secondaryCurrency'
  },
  headers: {
    'X-RapidAPI-Host': 'alpha-vantage.p.rapidapi.com',
    'X-RapidAPI-Key': '****************************'
  }
};

axios.request(options)
.then(res => console.log(res.data))
.catch(err => console.log(err.data))
	
	i tred to get currency rate exchange using this api with this format but i keep getting invalid api call for CURRENCY_EXCHANGE_RATE.
	The primaryCurrency is the value that will be select eg USD BTC, secondary currency is the value you wanna convert it to eg Eth

ディスカッションに参加しましょう-以下にコメントを追加してください:

ログイン/サインアップして新しいコメントを投稿