This repository has been archived by the owner on Jun 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
home.html
32 lines (26 loc) · 1.54 KB
/
home.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<title>Foreign Exchange Rate API | Free and Best Currency Converter - Ratesapi</title>
<link rel="stylesheet" type="text/css" href="./style.css/">
<meta name="description" content="Best Foreign exchange rate API to convert one currency from another and returns in JSON format. RateAPI tracks rates daily published by European central bank"/>
</head>
<body>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-11720509-10"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-11720509-10');
</script>
<h1>Hello Prices API</h1>
<p><a href="/api/latest">Latest Prices For Euro Currency: http://localhost:8000/api/latest</a></p>
<p><a href="/api/latest?symbols=USD,GBP">Latest Prices For Symbols: http://localhost:8000/api/latest?symbols=USD,GBP</a></p>
<p><a href="/api/latest?base=USD">Latest Prices For US Currency: http://localhost:8000/api/latest?base=USD</a></p>
<p><a href="/api/2018-04-17">Latest Prices For Euro Currency W.r.to. 2018-04-17: http://localhost:8000/api/2018-04-17</a></p>
<p><a href="/api/2018-04-17?symbols=USD,GBP">Latest Prices For Symbols W.r.to. 2018-04-17: http://localhost:8000/api/2018-04-17?symbols=USD,GBP</a></p>
<p><a href="/api/2018-04-17?base=USD">Latest Prices For US Currency W.r.to. 2018-04-17: http://localhost:8000/api/2018-04-17?base=USD</a></p>
<script type="text/javascript" src="./home.js"></script>
</body>
</html>