{"info":{"_postman_id":"a6b5bbdf-5b85-4276-b06f-7db075bea1c1","name":"Exchange Rate  API","description":"<html><head></head><body><p>Real-time and historical currency exchange rate API supporting 160+ currencies. Rates sourced from Reuters/Refinitiv and interbank feeds, updated every 60 seconds.</p>\n<h2 id=\"getting-started\">Getting Started</h2>\n<ol>\n<li>Sign up for a free API key at <a href=\"https://exchange-rateapi.com/register\">exchange-rateapi.com/register</a></li>\n<li>No credit card required</li>\n<li>Add your API key to the <code>api_key</code> collection variable</li>\n</ol>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Authenticated endpoints require a Bearer token in the Authorization header:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer YOUR_API_KEY\n</code></pre><p>The public rate endpoint (<code>/api/rate</code>) does not require authentication.</p>\n<h2 id=\"base-url\">Base URL</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://exchange-rateapi.com\n</code></pre><h2 id=\"rate-limits\">Rate Limits</h2>\n<ul>\n<li>Free plan: 1,000 requests/month</li>\n<li>Paid plans available for higher limits</li>\n</ul>\n<h2 id=\"support\">Support</h2>\n<ul>\n<li>Documentation: <a href=\"https://exchange-rateapi.com/docs\">exchange-rateapi.com/docs</a></li>\n<li>Website: <a href=\"https://exchange-rateapi.com\">exchange-rateapi.com</a></li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"55177795","collectionId":"a6b5bbdf-5b85-4276-b06f-7db075bea1c1","publishedId":"2sBXwmPCKZ","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-05-24T22:37:49.000Z"},"item":[{"name":"Public Endpoints","item":[{"name":"Get Public Rate","id":"b7e10b24-a56a-454f-928b-c3d906d26c8f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://exchange-rateapi.com/api/rate?source=USD&target=EUR","description":"<p>Get a single live mid-market exchange rate between two currencies. No authentication required.</p>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"data\": {\n    \"rate\": 0.9234,\n    \"source\": \"USD\",\n    \"target\": \"EUR\",\n    \"time\": \"2026-05-24T12:00:00Z\"\n  }\n}\n</code></pre>\n","urlObject":{"path":["api","rate"],"host":["https://exchange-rateapi.com"],"query":[{"description":{"content":"<p>Source currency code (ISO 4217). Example: USD, EUR, GBP</p>\n","type":"text/plain"},"key":"source","value":"USD"},{"description":{"content":"<p>Target currency code (ISO 4217). Example: EUR, GBP, JPY</p>\n","type":"text/plain"},"key":"target","value":"EUR"}],"variable":[]}},"response":[{"id":"257768c2-0629-4962-a105-5c442b5a4b04","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://exchange-rateapi.com/api/rate?source=USD&target=EUR","host":["https://exchange-rateapi.com"],"path":["api","rate"],"query":[{"key":"source","value":"USD"},{"key":"target","value":"EUR"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"rate\": 0.9234,\n    \"source\": \"USD\",\n    \"target\": \"EUR\",\n    \"time\": \"2026-05-24T12:00:00Z\"\n  }\n}"},{"id":"03cbab66-3ce4-4bc1-9acc-899dbd778485","name":"Missing Parameters","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://exchange-rateapi.com/api/rate?source=USD","host":["https://exchange-rateapi.com"],"path":["api","rate"],"query":[{"key":"source","value":"USD"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing source or target currency\"\n}"}],"_postman_id":"b7e10b24-a56a-454f-928b-c3d906d26c8f"}],"id":"fce1beb3-a182-4634-864f-b79b7d91786b","description":"<p>Endpoints that do not require authentication.</p>\n","_postman_id":"fce1beb3-a182-4634-864f-b79b7d91786b","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"YOUR_API_KEY_HERE"}]},"isInherited":true,"source":{"_postman_id":"a6b5bbdf-5b85-4276-b06f-7db075bea1c1","id":"a6b5bbdf-5b85-4276-b06f-7db075bea1c1","name":"Exchange Rate  API","type":"collection"}}},{"name":"Authenticated Endpoints","item":[{"name":"Get Exchange Rate","id":"46ee15f6-7823-453d-bf66-fb8d7068c206","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://exchange-rateapi.com/api/v1/rates?source=USD&target=EUR","description":"<p>Get the live mid-market exchange rate for one or more currency pairs. Supports multiple target currencies (comma-separated).</p>\n<h3 id=\"single-target\">Single Target</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /api/v1/rates?source=USD&amp;target=EUR\n</code></pre><h3 id=\"multiple-targets\">Multiple Targets</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /api/v1/rates?source=USD&amp;target=EUR,GBP,JPY\n</code></pre><h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"rate\": 0.9234,\n    \"source\": \"USD\",\n    \"target\": \"EUR\",\n    \"time\": \"2026-05-24T12:00:00Z\"\n  }\n]\n</code></pre>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"YOUR_API_KEY_HERE"}]},"isInherited":true,"source":{"_postman_id":"a6b5bbdf-5b85-4276-b06f-7db075bea1c1","id":"a6b5bbdf-5b85-4276-b06f-7db075bea1c1","name":"Exchange Rate  API","type":"collection"}},"urlObject":{"path":["api","v1","rates"],"host":["https://exchange-rateapi.com"],"query":[{"description":{"content":"<p>Source currency code (ISO 4217). Example: USD, EUR, GBP</p>\n","type":"text/plain"},"key":"source","value":"USD"},{"description":{"content":"<p>Target currency code (ISO 4217). Comma-separated for multiple targets. Example: EUR,GBP,JPY</p>\n","type":"text/plain"},"key":"target","value":"EUR"}],"variable":[]}},"response":[{"id":"e9e2934b-5233-4bb3-97f4-f189dbe723ab","name":"Single Pair","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://exchange-rateapi.com/api/v1/rates?source=USD&target=EUR","host":["https://exchange-rateapi.com"],"path":["api","v1","rates"],"query":[{"key":"source","value":"USD"},{"key":"target","value":"EUR"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"rate\": 0.9234,\n    \"source\": \"USD\",\n    \"target\": \"EUR\",\n    \"time\": \"2026-05-24T12:00:00Z\"\n  }\n]"},{"id":"dca6e117-3c90-486f-98b3-ac8d0b183dda","name":"Multiple Targets","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://exchange-rateapi.com/api/v1/rates?source=USD&target=EUR,GBP,JPY","host":["https://exchange-rateapi.com"],"path":["api","v1","rates"],"query":[{"key":"source","value":"USD"},{"key":"target","value":"EUR,GBP,JPY"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"rate\": 0.9234,\n    \"source\": \"USD\",\n    \"target\": \"EUR\",\n    \"time\": \"2026-05-24T12:00:00Z\"\n  },\n  {\n    \"rate\": 0.7891,\n    \"source\": \"USD\",\n    \"target\": \"GBP\",\n    \"time\": \"2026-05-24T12:00:00Z\"\n  },\n  {\n    \"rate\": 156.42,\n    \"source\": \"USD\",\n    \"target\": \"JPY\",\n    \"time\": \"2026-05-24T12:00:00Z\"\n  }\n]"},{"id":"36224c37-587f-429c-83b3-9ab277a41e5c","name":"Unauthorized","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://exchange-rateapi.com/api/v1/rates?source=USD&target=EUR","host":["https://exchange-rateapi.com"],"path":["api","v1","rates"],"query":[{"key":"source","value":"USD"},{"key":"target","value":"EUR"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Authentication required. Provide an API key via Authorization header or log in.\"\n}"}],"_postman_id":"46ee15f6-7823-453d-bf66-fb8d7068c206"},{"name":"Get Exchange Rate - Multiple Targets","id":"48dc7647-2f89-44f4-b93d-0a8a617133ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://exchange-rateapi.com/api/v1/rates?source=USD&target=EUR,GBP,JPY,AUD,CAD","description":"<p>Get live mid-market exchange rates for multiple currency pairs in a single request.</p>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  { \"rate\": 0.9234, \"source\": \"USD\", \"target\": \"EUR\", \"time\": \"...\" },\n  { \"rate\": 0.7891, \"source\": \"USD\", \"target\": \"GBP\", \"time\": \"...\" },\n  { \"rate\": 156.42, \"source\": \"USD\", \"target\": \"JPY\", \"time\": \"...\" },\n  { \"rate\": 1.5234, \"source\": \"USD\", \"target\": \"AUD\", \"time\": \"...\" },\n  { \"rate\": 1.3612, \"source\": \"USD\", \"target\": \"CAD\", \"time\": \"...\" }\n]\n</code></pre>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"YOUR_API_KEY_HERE"}]},"isInherited":true,"source":{"_postman_id":"a6b5bbdf-5b85-4276-b06f-7db075bea1c1","id":"a6b5bbdf-5b85-4276-b06f-7db075bea1c1","name":"Exchange Rate  API","type":"collection"}},"urlObject":{"path":["api","v1","rates"],"host":["https://exchange-rateapi.com"],"query":[{"description":{"content":"<p>Source currency code</p>\n","type":"text/plain"},"key":"source","value":"USD"},{"description":{"content":"<p>Comma-separated list of target currency codes</p>\n","type":"text/plain"},"key":"target","value":"EUR,GBP,JPY,AUD,CAD"}],"variable":[]}},"response":[],"_postman_id":"48dc7647-2f89-44f4-b93d-0a8a617133ec"},{"name":"Get Historical Rates","id":"9019c950-c51c-48fb-8fe3-25269457bdcf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://exchange-rateapi.com/api/v1/rates?source=USD&target=EUR&from=2024-01-01T00:00:00+00:00&to=2024-01-31T23:59:59+00:00&group=day","description":"<p>Get historical exchange rates for a specific date range. Supports grouping by day, week, or month.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>source</td>\n<td>Yes</td>\n<td>Source currency code</td>\n</tr>\n<tr>\n<td>target</td>\n<td>Yes</td>\n<td>Target currency code</td>\n</tr>\n<tr>\n<td>from</td>\n<td>Yes</td>\n<td>Start date (ISO 8601)</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Yes</td>\n<td>End date (ISO 8601)</td>\n</tr>\n<tr>\n<td>group</td>\n<td>No</td>\n<td>Grouping: <code>day</code>, <code>week</code>, or <code>month</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"rate\": 0.9198,\n    \"source\": \"USD\",\n    \"target\": \"EUR\",\n    \"time\": \"2024-01-01T00:00:00Z\"\n  },\n  {\n    \"rate\": 0.9215,\n    \"source\": \"USD\",\n    \"target\": \"EUR\",\n    \"time\": \"2024-01-02T00:00:00Z\"\n  }\n]\n</code></pre>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"YOUR_API_KEY_HERE"}]},"isInherited":true,"source":{"_postman_id":"a6b5bbdf-5b85-4276-b06f-7db075bea1c1","id":"a6b5bbdf-5b85-4276-b06f-7db075bea1c1","name":"Exchange Rate  API","type":"collection"}},"urlObject":{"path":["api","v1","rates"],"host":["https://exchange-rateapi.com"],"query":[{"description":{"content":"<p>Source currency code (ISO 4217)</p>\n","type":"text/plain"},"key":"source","value":"USD"},{"description":{"content":"<p>Target currency code (ISO 4217)</p>\n","type":"text/plain"},"key":"target","value":"EUR"},{"description":{"content":"<p>Start date in ISO 8601 format</p>\n","type":"text/plain"},"key":"from","value":"2024-01-01T00:00:00+00:00"},{"description":{"content":"<p>End date in ISO 8601 format</p>\n","type":"text/plain"},"key":"to","value":"2024-01-31T23:59:59+00:00"},{"description":{"content":"<p>Grouping interval: day, week, or month</p>\n","type":"text/plain"},"key":"group","value":"day"}],"variable":[]}},"response":[{"id":"48ecb171-ea80-43bc-813d-b138258abbe3","name":"Daily Rates","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://exchange-rateapi.com/api/v1/rates?source=USD&target=EUR&from=2024-01-01T00:00:00+00:00&to=2024-01-07T23:59:59+00:00&group=day","host":["https://exchange-rateapi.com"],"path":["api","v1","rates"],"query":[{"key":"source","value":"USD"},{"key":"target","value":"EUR"},{"key":"from","value":"2024-01-01T00:00:00+00:00"},{"key":"to","value":"2024-01-07T23:59:59+00:00"},{"key":"group","value":"day"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n  { \"rate\": 0.9198, \"source\": \"USD\", \"target\": \"EUR\", \"time\": \"2024-01-01T00:00:00Z\" },\n  { \"rate\": 0.9215, \"source\": \"USD\", \"target\": \"EUR\", \"time\": \"2024-01-02T00:00:00Z\" },\n  { \"rate\": 0.9201, \"source\": \"USD\", \"target\": \"EUR\", \"time\": \"2024-01-03T00:00:00Z\" },\n  { \"rate\": 0.9187, \"source\": \"USD\", \"target\": \"EUR\", \"time\": \"2024-01-04T00:00:00Z\" },\n  { \"rate\": 0.9192, \"source\": \"USD\", \"target\": \"EUR\", \"time\": \"2024-01-05T00:00:00Z\" }\n]"}],"_postman_id":"9019c950-c51c-48fb-8fe3-25269457bdcf"},{"name":"Get Historical Rates - Monthly","id":"cfce1d40-d914-4e4d-b6fc-7ca733415466","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://exchange-rateapi.com/api/v1/rates?source=GBP&target=USD&from=2024-01-01T00:00:00+00:00&to=2024-12-31T23:59:59+00:00&group=month","description":"<p>Get monthly historical exchange rates for a full year. Useful for annual reports and trend analysis.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"YOUR_API_KEY_HERE"}]},"isInherited":true,"source":{"_postman_id":"a6b5bbdf-5b85-4276-b06f-7db075bea1c1","id":"a6b5bbdf-5b85-4276-b06f-7db075bea1c1","name":"Exchange Rate  API","type":"collection"}},"urlObject":{"path":["api","v1","rates"],"host":["https://exchange-rateapi.com"],"query":[{"description":{"content":"<p>Source currency code</p>\n","type":"text/plain"},"key":"source","value":"GBP"},{"description":{"content":"<p>Target currency code</p>\n","type":"text/plain"},"key":"target","value":"USD"},{"description":{"content":"<p>Start date (full year)</p>\n","type":"text/plain"},"key":"from","value":"2024-01-01T00:00:00+00:00"},{"description":{"content":"<p>End date (full year)</p>\n","type":"text/plain"},"key":"to","value":"2024-12-31T23:59:59+00:00"},{"description":{"content":"<p>Group by month for yearly overview</p>\n","type":"text/plain"},"key":"group","value":"month"}],"variable":[]}},"response":[],"_postman_id":"cfce1d40-d914-4e4d-b6fc-7ca733415466"}],"id":"ac5d4819-9ed5-4899-abe9-67bf207f21eb","description":"<p>Endpoints that require a valid API key via Bearer token authentication.</p>\n","_postman_id":"ac5d4819-9ed5-4899-abe9-67bf207f21eb","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"YOUR_API_KEY_HERE"}]},"isInherited":true,"source":{"_postman_id":"a6b5bbdf-5b85-4276-b06f-7db075bea1c1","id":"a6b5bbdf-5b85-4276-b06f-7db075bea1c1","name":"Exchange Rate  API","type":"collection"}}},{"name":"Reference","item":[{"name":"List Supported Currencies","id":"004093a9-5781-4abc-b6e2-f52440232bd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://exchange-rateapi.com/api/v1/symbols","description":"<p>List all 160+ supported currency codes, names, and symbols.</p>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"currencies\": [\n    { \"code\": \"USD\", \"name\": \"US Dollar\", \"symbol\": \"$\" },\n    { \"code\": \"EUR\", \"name\": \"Euro\", \"symbol\": \"€\" },\n    { \"code\": \"GBP\", \"name\": \"British Pound\", \"symbol\": \"£\" }\n  ],\n  \"count\": 160\n}\n</code></pre>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"YOUR_API_KEY_HERE"}]},"isInherited":true,"source":{"_postman_id":"a6b5bbdf-5b85-4276-b06f-7db075bea1c1","id":"a6b5bbdf-5b85-4276-b06f-7db075bea1c1","name":"Exchange Rate  API","type":"collection"}},"urlObject":{"path":["api","v1","symbols"],"host":["https://exchange-rateapi.com"],"query":[],"variable":[]}},"response":[{"id":"2594f72b-bb8a-493d-9743-abe5626565e5","name":"Success","originalRequest":{"method":"GET","header":[],"url":"https://exchange-rateapi.com/api/v1/symbols"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"currencies\": [\n    { \"code\": \"USD\", \"name\": \"US Dollar\", \"symbol\": \"$\" },\n    { \"code\": \"EUR\", \"name\": \"Euro\", \"symbol\": \"€\" },\n    { \"code\": \"GBP\", \"name\": \"British Pound\", \"symbol\": \"£\" },\n    { \"code\": \"INR\", \"name\": \"Indian Rupee\", \"symbol\": \"₹\" },\n    { \"code\": \"AUD\", \"name\": \"Australian Dollar\", \"symbol\": \"A$\" },\n    { \"code\": \"CAD\", \"name\": \"Canadian Dollar\", \"symbol\": \"C$\" },\n    { \"code\": \"SGD\", \"name\": \"Singapore Dollar\", \"symbol\": \"S$\" },\n    { \"code\": \"CHF\", \"name\": \"Swiss Franc\", \"symbol\": \"CHF\" },\n    { \"code\": \"JPY\", \"name\": \"Japanese Yen\", \"symbol\": \"¥\" },\n    { \"code\": \"CNY\", \"name\": \"Chinese Yuan\", \"symbol\": \"¥\" }\n  ],\n  \"count\": 160\n}"}],"_postman_id":"004093a9-5781-4abc-b6e2-f52440232bd9"}],"id":"6fca3f3d-6655-44ef-a705-e7e07db5b320","description":"<p>Reference endpoints for currency metadata.</p>\n","_postman_id":"6fca3f3d-6655-44ef-a705-e7e07db5b320","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"YOUR_API_KEY_HERE"}]},"isInherited":true,"source":{"_postman_id":"a6b5bbdf-5b85-4276-b06f-7db075bea1c1","id":"a6b5bbdf-5b85-4276-b06f-7db075bea1c1","name":"Exchange Rate  API","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"YOUR_API_KEY_HERE"}]}},"event":[{"listen":"prerequest","script":{"id":"45abc360-f0f8-461a-b7a4-789839515ef8","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"c7586ebf-4502-49e5-8911-83c9811643d3","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"variable":[{"key":"base_url","value":"https://exchange-rateapi.com"},{"key":"api_key","value":"YOUR_API_KEY_HERE"}]}