Files
finance/public/docs/index.html
T
Ümit Tunç f6ef9fafdc first commit
2025-01-17 21:38:08 +03:00

657 lines
25 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Truncgil Finance Documentation</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="../docs/css/theme-default.style.css" media="screen">
<link rel="stylesheet" href="../docs/css/theme-default.print.css" media="print">
<script src="https://cdn.jsdelivr.net/npm/lodash@4.17.10/lodash.min.js"></script>
<link rel="stylesheet"
href="https://unpkg.com/@highlightjs/cdn-assets@11.6.0/styles/obsidian.min.css">
<script src="https://unpkg.com/@highlightjs/cdn-assets@11.6.0/highlight.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jets/0.14.1/jets.min.js"></script>
<style id="language-style">
/* starts out as display none and is replaced with js later */
body .content .bash-example code { display: none; }
body .content .javascript-example code { display: none; }
</style>
<script>
var tryItOutBaseUrl = "http://localhost:8000";
var useCsrf = Boolean();
var csrfUrl = "/sanctum/csrf-cookie";
</script>
<script src="../docs/js/tryitout-4.39.0.js"></script>
<script src="../docs/js/theme-default-4.39.0.js"></script>
</head>
<body data-languages="[&quot;bash&quot;,&quot;javascript&quot;]">
<a href="#" id="nav-button">
<span>
MENU
<img src="../docs/images/navbar.png" alt="navbar-image"/>
</span>
</a>
<div class="tocify-wrapper">
<div class="lang-selector">
<button type="button" class="lang-button" data-language-name="bash">bash</button>
<button type="button" class="lang-button" data-language-name="javascript">javascript</button>
</div>
<div class="search">
<input type="text" class="search" id="input-search" placeholder="Search">
</div>
<div id="toc">
<ul id="tocify-header-truncgil-finance" class="tocify-header">
<li class="tocify-item level-1" data-unique="truncgil-finance">
<a href="#truncgil-finance">Truncgil Finance</a>
</li>
</ul>
<ul id="tocify-header-authenticating-requests" class="tocify-header">
<li class="tocify-item level-1" data-unique="authenticating-requests">
<a href="#authenticating-requests">Authenticating requests</a>
</li>
</ul>
<ul id="tocify-header-endpoints" class="tocify-header">
<li class="tocify-item level-1" data-unique="endpoints">
<a href="#endpoints">Endpoints</a>
</li>
<ul id="tocify-subheader-endpoints" class="tocify-subheader">
<li class="tocify-item level-2" data-unique="endpoints-GETapi-currency-rates">
<a href="#endpoints-GETapi-currency-rates">GET api/currency-rates</a>
</li>
</ul>
</ul>
</div>
<ul class="toc-footer" id="toc-footer">
<li style="padding-bottom: 5px;"><a href="../docs/collection.json">View Postman collection</a></li>
<li style="padding-bottom: 5px;"><a href="../docs/openapi.yaml">View OpenAPI spec</a></li>
<li><a href="http://github.com/knuckleswtf/scribe">Documentation powered by Scribe ✍</a></li>
</ul>
<ul class="toc-footer" id="last-updated">
<li>Last updated: January 17, 2025</li>
</ul>
</div>
<div class="page-wrapper">
<div class="dark-box"></div>
<div class="content">
<h1 id="truncgil-finance">Truncgil Finance</h1>
<aside>
<strong>Base URL</strong>: <code>http://localhost:8000</code>
</aside>
<p>This documentation aims to provide all the information you need to work with our API.</p>
<aside>As you scroll, you'll see code examples for working with the API in different programming languages in the dark area to the right (or as part of the content on mobile).
You can switch the language used with the tabs at the top right (or from the nav menu at the top left on mobile).</aside>
<h1 id="authenticating-requests">Authenticating requests</h1>
<p>This API is not authenticated.</p>
<h1 id="endpoints">Endpoints</h1>
<h2 id="endpoints-GETapi-currency-rates">GET api/currency-rates</h2>
<p>
</p>
<span id="example-requests-GETapi-currency-rates">
<blockquote>Example request:</blockquote>
<div class="bash-example">
<pre><code class="language-bash">curl --request GET \
--get "http://localhost:8000/api/currency-rates" \
--header "Content-Type: application/json" \
--header "Accept: application/json"</code></pre></div>
<div class="javascript-example">
<pre><code class="language-javascript">const url = new URL(
"http://localhost:8000/api/currency-rates"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response =&gt; response.json());</code></pre></div>
</span>
<span id="example-responses-GETapi-currency-rates">
<blockquote>
<p>Example response (200):</p>
</blockquote>
<details class="annotation">
<summary style="cursor: pointer;">
<small onclick="textContent = parentElement.parentElement.open ? 'Show headers' : 'Hide headers'">Show headers</small>
</summary>
<pre><code class="language-http">cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
</code></pre></details> <pre>
<code class="language-json" style="max-height: 300px;">{
&quot;Update_Date&quot;: &quot;2025-01-17 18:33:23&quot;,
&quot;gram-altin&quot;: {
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Change&quot;: &quot;0.24&quot;
},
&quot;USD&quot;: {
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Change&quot;: &quot;0.39&quot;,
&quot;Buying&quot;: &quot;35.5568&quot;,
&quot;Selling&quot;: &quot;35.5729&quot;
},
&quot;EUR&quot;: {
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Change&quot;: &quot;-0.10&quot;,
&quot;Buying&quot;: &quot;36.5659&quot;,
&quot;Selling&quot;: &quot;36.5827&quot;
},
&quot;GBP&quot;: {
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Change&quot;: &quot;-0.26&quot;,
&quot;Buying&quot;: &quot;43.2899&quot;,
&quot;Selling&quot;: &quot;43.3139&quot;
},
&quot;XU100&quot;: {
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Change&quot;: &quot;1.13&quot;
},
&quot;bitcoin&quot;: {
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Change&quot;: &quot;5.18&quot;
},
&quot;gumus&quot;: {
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Change&quot;: &quot;-1.15&quot;
},
&quot;BRENT&quot;: {
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Change&quot;: &quot;-0.40&quot;
},
&quot;CHF&quot;: {
&quot;Buying&quot;: &quot;38.8684&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;38.8987&quot;,
&quot;Change&quot;: &quot;0.00&quot;
},
&quot;CAD&quot;: {
&quot;Buying&quot;: &quot;24.6017&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;24.6179&quot;,
&quot;Change&quot;: &quot;0.01&quot;
},
&quot;RUB&quot;: {
&quot;Buying&quot;: &quot;0.3469&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.3471&quot;,
&quot;Change&quot;: &quot;1.49&quot;
},
&quot;AED&quot;: {
&quot;Buying&quot;: &quot;9.6803&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;9.6855&quot;,
&quot;Change&quot;: &quot;0.39&quot;
},
&quot;AUD&quot;: {
&quot;Buying&quot;: &quot;22.0523&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;22.0694&quot;,
&quot;Change&quot;: &quot;0.29&quot;
},
&quot;DKK&quot;: {
&quot;Buying&quot;: &quot;4.9006&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;4.9039&quot;,
&quot;Change&quot;: &quot;0.23&quot;
},
&quot;SEK&quot;: {
&quot;Buying&quot;: &quot;3.1793&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;3.1830&quot;,
&quot;Change&quot;: &quot;0.13&quot;
},
&quot;NOK&quot;: {
&quot;Buying&quot;: &quot;3.1085&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;3.1113&quot;,
&quot;Change&quot;: &quot;-0.25&quot;
},
&quot;JPY&quot;: {
&quot;Buying&quot;: 0.2275,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: 0.2279,
&quot;Change&quot;: -0.005699999999999999
},
&quot;KWD&quot;: {
&quot;Buying&quot;: &quot;115.0539&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;115.4686&quot;,
&quot;Change&quot;: &quot;0.30&quot;
},
&quot;ZAR&quot;: {
&quot;Buying&quot;: &quot;1.8980&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;1.8998&quot;,
&quot;Change&quot;: &quot;0.94&quot;
},
&quot;BHD&quot;: {
&quot;Buying&quot;: &quot;94.3401&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;94.3829&quot;,
&quot;Change&quot;: &quot;0.40&quot;
},
&quot;LYD&quot;: {
&quot;Buying&quot;: &quot;7.1896&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;7.1928&quot;,
&quot;Change&quot;: &quot;-1.15&quot;
},
&quot;SAR&quot;: {
&quot;Buying&quot;: &quot;9.4641&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;9.4934&quot;,
&quot;Change&quot;: &quot;0.39&quot;
},
&quot;IQD&quot;: {
&quot;Buying&quot;: &quot;0.0271&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.0272&quot;,
&quot;Change&quot;: &quot;0.39&quot;
},
&quot;ILS&quot;: {
&quot;Buying&quot;: &quot;9.9769&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;9.9815&quot;,
&quot;Change&quot;: &quot;1.93&quot;
},
&quot;IRR&quot;: {
&quot;Buying&quot;: &quot;0.0008&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.0008&quot;,
&quot;Change&quot;: &quot;0.00&quot;
},
&quot;INR&quot;: {
&quot;Buying&quot;: &quot;0.4106&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.4108&quot;,
&quot;Change&quot;: &quot;0.41&quot;
},
&quot;MXN&quot;: {
&quot;Buying&quot;: &quot;1.7147&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;1.7154&quot;,
&quot;Change&quot;: &quot;0.90&quot;
},
&quot;HUF&quot;: {
&quot;Buying&quot;: &quot;0.0886&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.0886&quot;,
&quot;Change&quot;: &quot;0.21&quot;
},
&quot;NZD&quot;: {
&quot;Buying&quot;: &quot;19.8808&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;19.8898&quot;,
&quot;Change&quot;: &quot;0.13&quot;
},
&quot;BRL&quot;: {
&quot;Buying&quot;: &quot;5.8608&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;5.8634&quot;,
&quot;Change&quot;: &quot;0.19&quot;
},
&quot;IDR&quot;: {
&quot;Buying&quot;: &quot;0.0022&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.0022&quot;,
&quot;Change&quot;: &quot;0.42&quot;
},
&quot;CZK&quot;: {
&quot;Buying&quot;: &quot;1.4472&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;1.4479&quot;,
&quot;Change&quot;: &quot;0.33&quot;
},
&quot;PLN&quot;: {
&quot;Buying&quot;: &quot;8.5816&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;8.5854&quot;,
&quot;Change&quot;: &quot;0.35&quot;
},
&quot;RON&quot;: {
&quot;Buying&quot;: &quot;7.3452&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;7.3548&quot;,
&quot;Change&quot;: &quot;0.22&quot;
},
&quot;CNY&quot;: {
&quot;Buying&quot;: &quot;4.8533&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;4.8568&quot;,
&quot;Change&quot;: &quot;0.49&quot;
},
&quot;ARS&quot;: {
&quot;Buying&quot;: &quot;0.0341&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.0341&quot;,
&quot;Change&quot;: &quot;0.34&quot;
},
&quot;ALL&quot;: {
&quot;Buying&quot;: &quot;0.3728&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.3730&quot;,
&quot;Change&quot;: &quot;0.47&quot;
},
&quot;AZN&quot;: {
&quot;Buying&quot;: &quot;20.9158&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;20.9252&quot;,
&quot;Change&quot;: &quot;0.39&quot;
},
&quot;BAM&quot;: {
&quot;Buying&quot;: &quot;18.7299&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;18.7384&quot;,
&quot;Change&quot;: &quot;-6.31&quot;
},
&quot;CLP&quot;: {
&quot;Buying&quot;: &quot;0.0353&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.0353&quot;,
&quot;Change&quot;: &quot;0.95&quot;
},
&quot;COP&quot;: {
&quot;Buying&quot;: &quot;0.0082&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.0082&quot;,
&quot;Change&quot;: &quot;0.47&quot;
},
&quot;CRC&quot;: {
&quot;Buying&quot;: &quot;0.0709&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.0709&quot;,
&quot;Change&quot;: &quot;0.55&quot;
},
&quot;DZD&quot;: {
&quot;Buying&quot;: &quot;0.2616&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.2617&quot;,
&quot;Change&quot;: &quot;0.60&quot;
},
&quot;EGP&quot;: {
&quot;Buying&quot;: &quot;0.7054&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.7058&quot;,
&quot;Change&quot;: &quot;0.38&quot;
},
&quot;HKD&quot;: {
&quot;Buying&quot;: &quot;4.5675&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;4.5695&quot;,
&quot;Change&quot;: &quot;0.42&quot;
},
&quot;ISK&quot;: {
&quot;Buying&quot;: &quot;0.2513&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.2515&quot;,
&quot;Change&quot;: &quot;-0.04&quot;
},
&quot;JOD&quot;: {
&quot;Buying&quot;: &quot;50.1436&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;50.1663&quot;,
&quot;Change&quot;: &quot;0.42&quot;
},
&quot;KRW&quot;: {
&quot;Buying&quot;: &quot;0.0244&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.0244&quot;,
&quot;Change&quot;: &quot;0.39&quot;
},
&quot;KZT&quot;: {
&quot;Buying&quot;: &quot;0.0670&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.0670&quot;,
&quot;Change&quot;: &quot;0.35&quot;
},
&quot;LBP&quot;: {
&quot;Buying&quot;: &quot;0.0004&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.0004&quot;,
&quot;Change&quot;: &quot;0.44&quot;
},
&quot;LKR&quot;: {
&quot;Buying&quot;: &quot;0.1199&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.1200&quot;,
&quot;Change&quot;: &quot;0.38&quot;
},
&quot;MAD&quot;: {
&quot;Buying&quot;: &quot;3.5377&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;3.5393&quot;,
&quot;Change&quot;: &quot;0.37&quot;
},
&quot;MDL&quot;: {
&quot;Buying&quot;: &quot;1.8828&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;1.8837&quot;,
&quot;Change&quot;: &quot;-0.21&quot;
},
&quot;MKD&quot;: {
&quot;Buying&quot;: &quot;0.5944&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.5947&quot;,
&quot;Change&quot;: &quot;0.27&quot;
},
&quot;MYR&quot;: {
&quot;Buying&quot;: &quot;7.8910&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;7.8946&quot;,
&quot;Change&quot;: &quot;0.31&quot;
},
&quot;OMR&quot;: {
&quot;Buying&quot;: &quot;92.3577&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;92.3995&quot;,
&quot;Change&quot;: &quot;0.39&quot;
},
&quot;PEN&quot;: {
&quot;Buying&quot;: &quot;9.4641&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;9.4684&quot;,
&quot;Change&quot;: &quot;0.41&quot;
},
&quot;PHP&quot;: {
&quot;Buying&quot;: &quot;0.6083&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.6086&quot;,
&quot;Change&quot;: &quot;0.63&quot;
},
&quot;PKR&quot;: {
&quot;Buying&quot;: &quot;0.1274&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.1277&quot;,
&quot;Change&quot;: &quot;0.39&quot;
},
&quot;QAR&quot;: {
&quot;Buying&quot;: &quot;9.7614&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;9.7771&quot;,
&quot;Change&quot;: &quot;0.39&quot;
},
&quot;RSD&quot;: {
&quot;Buying&quot;: &quot;0.3119&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.3128&quot;,
&quot;Change&quot;: &quot;-0.06&quot;
},
&quot;SGD&quot;: {
&quot;Buying&quot;: &quot;25.9937&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;26.0055&quot;,
&quot;Change&quot;: &quot;0.31&quot;
},
&quot;SYP&quot;: {
&quot;Buying&quot;: &quot;0.0027&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.0027&quot;,
&quot;Change&quot;: &quot;0.39&quot;
},
&quot;THB&quot;: {
&quot;Buying&quot;: &quot;1.0319&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;1.0323&quot;,
&quot;Change&quot;: &quot;0.72&quot;
},
&quot;TWD&quot;: {
&quot;Buying&quot;: &quot;1.0808&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;1.0812&quot;,
&quot;Change&quot;: &quot;0.51&quot;
},
&quot;UAH&quot;: {
&quot;Buying&quot;: &quot;0.8428&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.8432&quot;,
&quot;Change&quot;: &quot;0.23&quot;
},
&quot;UYU&quot;: {
&quot;Buying&quot;: &quot;0.8068&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;0.8072&quot;,
&quot;Change&quot;: &quot;0.23&quot;
},
&quot;GEL&quot;: {
&quot;Buying&quot;: &quot;12.5200&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;12.5257&quot;,
&quot;Change&quot;: &quot;-3.50&quot;
},
&quot;TND&quot;: {
&quot;Buying&quot;: &quot;11.0700&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;11.0750&quot;,
&quot;Change&quot;: &quot;0.39&quot;
},
&quot;BGN&quot;: {
&quot;Buying&quot;: &quot;18.6226&quot;,
&quot;Type&quot;: &quot;Currency&quot;,
&quot;Selling&quot;: &quot;18.7779&quot;,
&quot;Change&quot;: &quot;-0.10&quot;
}
}</code>
</pre>
</span>
<span id="execution-results-GETapi-currency-rates" hidden>
<blockquote>Received response<span
id="execution-response-status-GETapi-currency-rates"></span>:
</blockquote>
<pre class="json"><code id="execution-response-content-GETapi-currency-rates"
data-empty-response-text="<Empty response>" style="max-height: 400px;"></code></pre>
</span>
<span id="execution-error-GETapi-currency-rates" hidden>
<blockquote>Request failed with error:</blockquote>
<pre><code id="execution-error-message-GETapi-currency-rates">
Tip: Check that you&#039;re properly connected to the network.
If you&#039;re a maintainer of ths API, verify that your API is running and you&#039;ve enabled CORS.
You can check the Dev Tools console for debugging information.</code></pre>
</span>
<form id="form-GETapi-currency-rates" data-method="GET"
data-path="api/currency-rates"
data-authed="0"
data-hasfiles="0"
data-isarraybody="0"
autocomplete="off"
onsubmit="event.preventDefault(); executeTryOut('GETapi-currency-rates', this);">
<h3>
Request&nbsp;&nbsp;&nbsp;
<button type="button"
style="background-color: #8fbcd4; padding: 5px 10px; border-radius: 5px; border-width: thin;"
id="btn-tryout-GETapi-currency-rates"
onclick="tryItOut('GETapi-currency-rates');">Try it out ⚡
</button>
<button type="button"
style="background-color: #c97a7e; padding: 5px 10px; border-radius: 5px; border-width: thin;"
id="btn-canceltryout-GETapi-currency-rates"
onclick="cancelTryOut('GETapi-currency-rates');" hidden>Cancel 🛑
</button>&nbsp;&nbsp;
<button type="submit"
style="background-color: #6ac174; padding: 5px 10px; border-radius: 5px; border-width: thin;"
id="btn-executetryout-GETapi-currency-rates"
data-initial-text="Send Request 💥"
data-loading-text="⏱ Sending..."
hidden>Send Request 💥
</button>
</h3>
<p>
<small class="badge badge-green">GET</small>
<b><code>api/currency-rates</code></b>
</p>
<h4 class="fancy-heading-panel"><b>Headers</b></h4>
<div style="padding-left: 28px; clear: unset;">
<b style="line-height: 2;"><code>Content-Type</code></b>&nbsp;&nbsp;
&nbsp;
&nbsp;
<input type="text" style="display: none"
name="Content-Type" data-endpoint="GETapi-currency-rates"
value="application/json"
data-component="header">
<br>
<p>Example: <code>application/json</code></p>
</div>
<div style="padding-left: 28px; clear: unset;">
<b style="line-height: 2;"><code>Accept</code></b>&nbsp;&nbsp;
&nbsp;
&nbsp;
<input type="text" style="display: none"
name="Accept" data-endpoint="GETapi-currency-rates"
value="application/json"
data-component="header">
<br>
<p>Example: <code>application/json</code></p>
</div>
</form>
</div>
<div class="dark-box">
<div class="lang-selector">
<button type="button" class="lang-button" data-language-name="bash">bash</button>
<button type="button" class="lang-button" data-language-name="javascript">javascript</button>
</div>
</div>
</div>
</body>
</html>