웹솔루션개발 22년 노하우! 해피CGI의 모든것

[해피CGI][cgimall] 실시간 환율 정보를 제공하는 Yahoo OPEN API 본문

웹프로그램밍 자료실/기타 자료

[해피CGI][cgimall] 실시간 환율 정보를 제공하는 Yahoo OPEN API

해피CGI윤실장 2017. 5. 26. 09:28

야후에서 제공하는 실시간 환율 정보 API 입니다.


- YQL 콘솔 사이트
https://developer.yahoo.com/yql/console

- 환율 테이블명
yahoo.finance.xchange



예전에는 YQL 콘솔 페이지에서 환율 테이블을 검색할 수 있었지만,
현재에는 테이블 검색은 안되고 URL로 직접 쳐서 확인해야 되는 것 같습니다.


URL)

http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20yahoo.finance.xchange%20where%20pair%3D%22ISO코드조합%22&format=xml&diagnostics=true&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys



위 ISO코드 조합은 '기준 통화 ISO코드' + '변경할 통화 ISO코드' 조합입니다.


예제)

미국 달러 -> 한국 원 : USDKRW

http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20yahoo.finance.xchange%20where%20pair%3D%22USDKRW%22&format=xml&diagnostics=true&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys



일본 엔 -> 한국 원 : JPYKRW

http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20yahoo.finance.xchange%20where%20pair%3D%22JPYKRW%22&format=xml&diagnostics=true&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys



세계 ISO코드는 아래 URL에서 확인할 수 있습니다. (alpha-3)

https://ko.wikipedia.org/wiki/ISO_3166-1



URL 접근시 아래와 같이 XML로 확인 가능합니다.

 

 

 

홈페이지바로가기 

Comments