{"info":{"_postman_id":"6df4a072-29ea-49f8-ad0c-32b23f77f48d","name":"Exchange Rate API","description":"<html><head></head><body><p>Complete collection for the Exchange Rate API - Access real-time currency exchange rates.</p>\n<h2 id=\"features\">Features</h2>\n<ul>\n<li>Real-time exchange rates</li>\n<li>Complete currency matrix for all supported currencies</li>\n<li>Multiple currency pair support</li>\n<li>Batch queries for multiple pairs</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<p>All requests require an API key in the <code>x-api-co-id</code> header.</p>\n<h2 id=\"base-url\">Base URL</h2>\n<ul>\n<li>Production: <code>https://use.api.co.id</code></li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"50289783","collectionId":"6df4a072-29ea-49f8-ad0c-32b23f77f48d","publishedId":"2sB3dHVskC","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-11-23T11:30:57.000Z"},"item":[{"name":"Exchange Rates","item":[{"name":"List All Exchange Rates","id":"7525b793-6131-4166-b4bd-7d3cc2482b29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-co-id","value":"your_api_key_here","description":"<p>Your API key for authentication</p>\n","type":"text"}],"url":"https://use.api.co.id/api/exchange-rates","description":"<p>Get complete currency matrix with all exchange rates.</p>\n<h3 id=\"features\">Features</h3>\n<ul>\n<li>Returns all possible currency pairs</li>\n<li>Alphabetically sorted by base currency</li>\n</ul>\n<h3 id=\"response-format\">Response Format</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"success\": true,\n  \"updated_at\": \"2025-11-18T12:47:52+00:00\",\n  \"rates\": [\n    {\n      \"base\": \"IDR\",\n      \"rates\": {\n        \"USD\": 0.00005974,\n        \"MYR\": 0.00024851,\n        ...\n      }\n    }\n  ]\n}\n</code></pre>\n","urlObject":{"path":["api","exchange-rates"],"host":["https://use.api.co.id"],"query":[],"variable":[]}},"response":[{"id":"948f1537-0525-4bbe-8e27-bd3ca4eb23a4","name":"Success - All Exchange Rates","originalRequest":{"method":"GET","header":[{"key":"x-api-co-id","value":"your_api_key_here","type":"text"}],"url":"https://use.api.co.id/api/exchange-rates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"updated_at\": 1763461822000,\n    \"rates\": [\n        {\n            \"base\": \"IDR\",\n            \"rates\": {\n                \"AED\": 0.00021941,\n                \"AUD\": 0.00009185,\n                \"CAD\": 0.00008381,\n                \"CHF\": 0.00004759,\n                \"CNY\": 0.00042474,\n                \"EUR\": 0.00005155,\n                \"GBP\": 0.00004544,\n                \"INR\": 0.00528973,\n                \"JPY\": 0.00927646,\n                \"KRW\": 0.08742593,\n                \"MYR\": 0.00024851,\n                \"PHP\": 0.00351643,\n                \"SAR\": 0.00022403,\n                \"SGD\": 0.00007779,\n                \"THB\": 0.00193489,\n                \"USD\": 0.00005974\n            }\n        },\n        {\n            \"base\": \"MYR\",\n            \"rates\": {\n                \"AED\": 0.88290865,\n                \"AUD\": 0.36961538,\n                \"CAD\": 0.33723558,\n                \"CHF\": 0.19149038,\n                \"CNY\": 1.70915865,\n                \"EUR\": 0.20742788,\n                \"GBP\": 0.18286058,\n                \"IDR\": 4024.03846154,\n                \"INR\": 21.28605769,\n                \"JPY\": 37.32884615,\n                \"KRW\": 351.80528846,\n                \"PHP\": 14.15024038,\n                \"SAR\": 0.90149038,\n                \"SGD\": 0.31302885,\n                \"THB\": 7.78605769,\n                \"USD\": 0.24038462\n            }\n        },\n        {\n            \"base\": \"USD\",\n            \"rates\": {\n                \"AED\": 3.6729,\n                \"AUD\": 1.5376,\n                \"CAD\": 1.4029,\n                \"CHF\": 0.7966,\n                \"CNY\": 7.1101,\n                \"EUR\": 0.8629,\n                \"GBP\": 0.7607,\n                \"IDR\": 16740,\n                \"INR\": 88.55,\n                \"JPY\": 155.288,\n                \"KRW\": 1463.51,\n                \"MYR\": 4.16,\n                \"PHP\": 58.865,\n                \"SAR\": 3.7502,\n                \"SGD\": 1.3022,\n                \"THB\": 32.39\n            }\n        }\n    ],\n    \"last_data_updated_at\": 1732178872000\n}"}],"_postman_id":"7525b793-6131-4166-b4bd-7d3cc2482b29"},{"name":"Get Rates by Currency","id":"eecad904-8d0d-4e9e-acef-2350e6621288","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-co-id","value":"your_api_key_here","description":"<p>Your API key for authentication</p>\n","type":"text"}],"url":"https://use.api.co.id/currency/:currency","description":"<p>Get all exchange rates for a specific base currency.</p>\n<h3 id=\"path-parameters\">Path Parameters</h3>\n<ul>\n<li><code>currency</code> (required): Base currency code (3 characters, case insensitive)</li>\n</ul>\n<h3 id=\"features\">Features</h3>\n<ul>\n<li>Returns rates to all available currencies</li>\n<li>Works for any currency in the system</li>\n</ul>\n<h3 id=\"examples\">Examples</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\"># Get IDR rates\nGET /currency/IDR\n\n# Get MYR rates\nGET /currency/MYR\n\n# Get USD rates\nGET /currency/USD\n</code></pre>\n<h3 id=\"use-cases\">Use Cases</h3>\n<ul>\n<li>Currency converter applications</li>\n<li>Real-time rate monitoring</li>\n<li>Financial dashboards</li>\n<li>Trading platforms</li>\n</ul>\n","urlObject":{"path":["currency",":currency"],"host":["https://use.api.co.id"],"query":[],"variable":[{"id":"faf71b30-fb0f-4cdd-8f9d-9088519da43d","description":{"content":"<p>Base currency code (e.g., USD, EUR, MYR, GBP)</p>\n","type":"text/plain"},"type":"any","value":"USD","key":"currency"}]}},"response":[{"id":"36eca4f6-01f7-44ef-99f5-a35691d105d3","name":"Success - USD Rates","originalRequest":{"method":"GET","header":[{"key":"x-api-co-id","value":"your_api_key_here","type":"text"}],"url":{"raw":"https://use.api.co.id/currency/:currency","host":["https://use.api.co.id"],"path":["currency",":currency"],"variable":[{"key":"currency","value":"USD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"is_success\": true,\n    \"message\": \"Success\",\n    \"data\": {\n        \"currency\": \"USD\",\n        \"updated_at\": 1732178872000,\n        \"rates\": {\n            \"AED\": 3.6729,\n            \"AUD\": 1.5376,\n            \"CAD\": 1.4029,\n            \"CHF\": 0.7966,\n            \"CNY\": 7.1101,\n            \"EUR\": 0.8629,\n            \"GBP\": 0.7607,\n            \"IDR\": 16740,\n            \"INR\": 88.55,\n            \"JPY\": 155.288,\n            \"KRW\": 1463.51,\n            \"MYR\": 4.16,\n            \"PHP\": 58.865,\n            \"SAR\": 3.7502,\n            \"SGD\": 1.3022,\n            \"THB\": 32.39\n        }\n    },\n    \"last_data_updated_at\": 1732178872000\n}"},{"id":"04eece6e-22b8-4e1e-9acd-43ffd35abb10","name":"Success - IDR Rates (Cross-Calculated)","originalRequest":{"method":"GET","header":[{"key":"x-api-co-id","value":"your_api_key_here","type":"text"}],"url":{"raw":"https://use.api.co.id/currency/:currency","host":["https://use.api.co.id"],"path":["currency",":currency"],"variable":[{"key":"currency","value":"IDR"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"is_success\": true,\n    \"message\": \"Success\",\n    \"data\": {\n        \"currency\": \"IDR\",\n        \"updated_at\": 1732178872000,\n        \"rates\": {\n            \"AED\": 0.00021941,\n            \"AUD\": 0.00009185,\n            \"CAD\": 0.00008381,\n            \"CHF\": 0.00004759,\n            \"CNY\": 0.00042474,\n            \"EUR\": 0.00005155,\n            \"GBP\": 0.00004544,\n            \"INR\": 0.00528973,\n            \"JPY\": 0.00927646,\n            \"KRW\": 0.08742593,\n            \"MYR\": 0.00024851,\n            \"PHP\": 0.00351643,\n            \"SAR\": 0.00022403,\n            \"SGD\": 0.00007779,\n            \"THB\": 0.00193489,\n            \"USD\": 0.00005974\n        }\n    },\n    \"last_data_updated_at\": 1732178872000\n}"},{"id":"eb037797-f919-4774-943c-c67858bba9fd","name":"Success - EUR Rates","originalRequest":{"method":"GET","header":[{"key":"x-api-co-id","value":"your_api_key_here","type":"text"}],"url":{"raw":"https://use.api.co.id/currency/:currency","host":["https://use.api.co.id"],"path":["currency",":currency"],"variable":[{"key":"currency","value":"EUR"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"is_success\": true,\n    \"message\": \"Success\",\n    \"data\": {\n        \"currency\": \"EUR\",\n        \"updated_at\": 1732178872000,\n        \"rates\": {\n            \"AED\": 4.25646077,\n            \"AUD\": 1.78189825,\n            \"CAD\": 1.62579673,\n            \"CHF\": 0.92316607,\n            \"CNY\": 8.23977286,\n            \"GBP\": 0.88156217,\n            \"IDR\": 19399.69869046,\n            \"INR\": 102.61907521,\n            \"JPY\": 179.96059798,\n            \"KRW\": 1696.0366207,\n            \"MYR\": 4.8209526,\n            \"PHP\": 68.2176382,\n            \"SAR\": 4.34604242,\n            \"SGD\": 1.50909723,\n            \"THB\": 37.53621509,\n            \"USD\": 1.15888284\n        }\n    },\n    \"last_data_updated_at\": 1732178872000\n}"},{"id":"c57d2ec3-59bd-4472-816b-7369761c5d9e","name":"Error - Currency Not Found","originalRequest":{"method":"GET","header":[{"key":"x-api-co-id","value":"your_api_key_here","type":"text"}],"url":{"raw":"https://use.api.co.id/currency/:currency","host":["https://use.api.co.id"],"path":["currency",":currency"],"variable":[{"key":"currency","value":"XYZ"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"is_success\": false,\n    \"message\": \"no rates found for currency: XYZ\",\n    \"errors\": \"\"\n}"}],"_postman_id":"eecad904-8d0d-4e9e-acef-2350e6621288"},{"name":"Get Rate by Single Pair","id":"b377dac6-79e0-4122-9499-60cec2e819b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-co-id","value":"your_api_key_here","description":"<p>Your API key for authentication</p>\n","type":"text"}],"url":"https://use.api.co.id/currency/exchange-rate?pair=USDIDR","description":"<p>Get the exchange rate for a specific currency pair.</p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<ul>\n<li><code>pair</code> (required): Currency pair symbol (case insensitive)<ul>\n<li>Format: BASECODE + QUOTECODE (e.g., USDIDR, EURIDR)</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"common-pairs\">Common Pairs</h3>\n<ul>\n<li>USDIDR - US Dollar to Indonesian Rupiah</li>\n<li>EURIDR - Euro to Indonesian Rupiah</li>\n<li>GBPIDR - British Pound to Indonesian Rupiah</li>\n<li>MYRIDR - Malaysian Ringgit to Indonesian Rupiah</li>\n<li>SGDIDR - Singapore Dollar to Indonesian Rupiah</li>\n<li>JPYIDR - Japanese Yen to Indonesian Rupiah</li>\n</ul>\n<h3 id=\"use-cases\">Use Cases</h3>\n<ul>\n<li>Quick rate lookups</li>\n<li>Price calculations</li>\n<li>Rate widgets</li>\n<li>Financial applications</li>\n</ul>\n","urlObject":{"path":["currency","exchange-rate"],"host":["https://use.api.co.id"],"query":[{"description":{"content":"<p>Currency pair symbol (e.g., USDIDR, EURIDR)</p>\n","type":"text/plain"},"key":"pair","value":"USDIDR"}],"variable":[]}},"response":[{"id":"005879a4-cc88-4711-bdf4-e41e5b02f49f","name":"Success - USDIDR Rate","originalRequest":{"method":"GET","header":[{"key":"x-api-co-id","value":"your_api_key_here","type":"text"}],"url":{"raw":"https://use.api.co.id/currency/exchange-rate?pair=USDIDR","host":["https://use.api.co.id"],"path":["currency","exchange-rate"],"query":[{"key":"pair","value":"USDIDR"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"is_success\": true,\n    \"message\": \"Success\",\n    \"data\": {\n        \"pair\": \"USDIDR\",\n        \"updated_at\": 1732178872000,\n        \"rate\": 16740\n    },\n    \"last_data_updated_at\": 1732178872000\n}"},{"id":"64f9ebb3-02a2-484f-bdc1-28194e6df9ff","name":"Success - EURIDR Rate","originalRequest":{"method":"GET","header":[{"key":"x-api-co-id","value":"your_api_key_here","type":"text"}],"url":{"raw":"https://use.api.co.id/currency/exchange-rate?pair=EURIDR","host":["https://use.api.co.id"],"path":["currency","exchange-rate"],"query":[{"key":"pair","value":"EURIDR"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"is_success\": true,\n    \"message\": \"Success\",\n    \"data\": {\n        \"pair\": \"EURIDR\",\n        \"updated_at\": 1732178872000,\n        \"rate\": 19399.69869046\n    },\n    \"last_data_updated_at\": 1732178872000\n}"},{"id":"96ee98af-cc3f-400f-800c-3c1eeed3cbb4","name":"Success - MYRIDR Rate","originalRequest":{"method":"GET","header":[{"key":"x-api-co-id","value":"your_api_key_here","type":"text"}],"url":{"raw":"https://use.api.co.id/currency/exchange-rate?pair=MYRIDR","host":["https://use.api.co.id"],"path":["currency","exchange-rate"],"query":[{"key":"pair","value":"MYRIDR"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"is_success\": true,\n    \"message\": \"Success\",\n    \"data\": {\n        \"pair\": \"MYRIDR\",\n        \"updated_at\": 1732178872000,\n        \"rate\": 4024.03846154\n    },\n    \"last_data_updated_at\": 1732178872000\n}"},{"id":"8c6bf40a-a1b3-4bc3-8b3b-838ab4fa69a5","name":"Error - Pair Not Found","originalRequest":{"method":"GET","header":[{"key":"x-api-co-id","value":"your_api_key_here","type":"text"}],"url":{"raw":"https://use.api.co.id/currency/exchange-rate?pair=INVALID","host":["https://use.api.co.id"],"path":["currency","exchange-rate"],"query":[{"key":"pair","value":"INVALID"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"is_success\": false,\n    \"message\": \"exchange rate not found for pair: INVALID\",\n    \"errors\": \"\"\n}"},{"id":"40bc21bb-1c1a-47e1-90a9-103ac0851d7b","name":"Error - Missing Pair Parameter","originalRequest":{"method":"GET","header":[{"key":"x-api-co-id","value":"your_api_key_here","type":"text"}],"url":"https://use.api.co.id/currency/exchange-rate"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"is_success\": false,\n    \"message\": \"Pair query parameter is required (e.g., ?pair=USDIDR or ?pair=USDIDR,EURIDR)\",\n    \"errors\": \"\"\n}"}],"_postman_id":"b377dac6-79e0-4122-9499-60cec2e819b7"},{"name":"Get Rates by Multiple Pairs","id":"8f84bb1e-0cc4-4e05-bd6f-9cb74c2980f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-co-id","value":"your_api_key_here","description":"<p>Your API key for authentication</p>\n","type":"text"}],"url":"https://use.api.co.id/currency/exchange-rate?pair=USDIDR,EURIDR,MYRIDR","description":"<p>Get exchange rates for multiple currency pairs in a single request.</p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<ul>\n<li><code>pair</code> (required): Comma-separated currency pair symbols<ul>\n<li>Example: <code>USDIDR,EURIDR,MYRIDR,GBPIDR</code></li>\n<li>Maximum recommended: 10 pairs per request</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"benefits\">Benefits</h3>\n<ul>\n<li>Reduced API calls</li>\n<li>Better performance</li>\n<li>Consistent timestamps across rates</li>\n<li>Lower latency</li>\n</ul>\n<h3 id=\"use-cases\">Use Cases</h3>\n<ul>\n<li>Dashboard displays</li>\n<li>Multi-currency applications</li>\n<li>Batch processing</li>\n<li>Real-time rate monitoring for multiple pairs</li>\n</ul>\n","urlObject":{"path":["currency","exchange-rate"],"host":["https://use.api.co.id"],"query":[{"description":{"content":"<p>Comma-separated currency pair symbols</p>\n","type":"text/plain"},"key":"pair","value":"USDIDR,EURIDR,MYRIDR"}],"variable":[]}},"response":[{"id":"7b377c58-c667-44cb-ae36-a0dec016f71a","name":"Success - Multiple Pairs","originalRequest":{"method":"GET","header":[{"key":"x-api-co-id","value":"your_api_key_here","type":"text"}],"url":{"raw":"https://use.api.co.id/currency/exchange-rate?pair=USDIDR,EURIDR,MYRIDR","host":["https://use.api.co.id"],"path":["currency","exchange-rate"],"query":[{"key":"pair","value":"USDIDR,EURIDR,MYRIDR"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"is_success\": true,\n    \"message\": \"Success\",\n    \"data\": {\n        \"exchange_rates\": [\n            {\n                \"pair\": \"USDIDR\",\n                \"updated_at\": 1732178872000,\n                \"rate\": 16740\n            },\n            {\n                \"pair\": \"EURIDR\",\n                \"updated_at\": 1732178872000,\n                \"rate\": 19399.69869046\n            },\n            {\n                \"pair\": \"MYRIDR\",\n                \"updated_at\": 1732178872000,\n                \"rate\": 4024.03846154\n            }\n        ]\n    },\n    \"last_data_updated_at\": 1732178872000\n}"},{"id":"194ad558-213d-48be-adf0-1b73efb1360b","name":"Success - Many Pairs","originalRequest":{"method":"GET","header":[{"key":"x-api-co-id","value":"your_api_key_here","type":"text"}],"url":{"raw":"https://use.api.co.id/currency/exchange-rate?pair=USDIDR,EURIDR,GBPIDR,JPYIDR,SGDIDR","host":["https://use.api.co.id"],"path":["currency","exchange-rate"],"query":[{"key":"pair","value":"USDIDR,EURIDR,GBPIDR,JPYIDR,SGDIDR"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"is_success\": true,\n    \"message\": \"Success\",\n    \"data\": {\n        \"exchange_rates\": [\n            {\n                \"pair\": \"USDIDR\",\n                \"updated_at\": 1732178872000,\n                \"rate\": 16740\n            },\n            {\n                \"pair\": \"EURIDR\",\n                \"updated_at\": 1732178872000,\n                \"rate\": 19399.69869046\n            },\n            {\n                \"pair\": \"GBPIDR\",\n                \"updated_at\": 1732178872000,\n                \"rate\": 22006.04706192\n            },\n            {\n                \"pair\": \"JPYIDR\",\n                \"updated_at\": 1732178872000,\n                \"rate\": 107.7997012\n            },\n            {\n                \"pair\": \"SGDIDR\",\n                \"updated_at\": 1732178872000,\n                \"rate\": 12855.16817693\n            }\n        ]\n    },\n    \"last_data_updated_at\": 1732178872000\n}"}],"_postman_id":"8f84bb1e-0cc4-4e05-bd6f-9cb74c2980f7"}],"id":"74f23047-f885-414f-85fc-b8612db12a17","description":"<p>Endpoints for accessing exchange rate data.</p>\n","_postman_id":"74f23047-f885-414f-85fc-b8612db12a17"}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"0007d716-ab8e-4ce7-a8a9-4e9632edccc6"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"8f82c31a-14fb-4483-808c-60a001310c6b"}}],"variable":[{"key":"base_url","value":"https://use.api.co.id","type":"string","description":"Base URL for the API"},{"key":"api_key","value":"your_api_key_here","type":"string"}]}