{"componentChunkName":"component---src-templates-simple-markdown-js","path":"/api/getting-started/headers/currency/","matchPath":"","result":{"data":{"markdownRemark":{"html":"<h1 style=\"position:relative;\"><a href=\"#x-musement-currency-header\" aria-label=\"x musement currency header permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><div class=\"hidden-anchor\" id=\"x-musement-currency-header\"></div>X-Musement-Currency header</h1>\n<p>By default, responses will show prices in United States dollars (USD) or the default currency of the <code class=\"language-text\">X-Musement-Market</code> header value (if present). You can request prices in a specific currency with the <code class=\"language-text\">X-Musement-Currency</code> header.</p>\n<p>In the example request below, we are asking for prices in British pounds (GBP):</p>\n<div class=\"code-wrapper\">\n        <div class=\"gatsby-code-button-container\"\n             data-toaster-id=\"36837264899849732000\"\n             data-toaster-duration=\"1500\"\n             onClick=\"copyCodeToClipboard(`curl -X GET '{baseUrl}/activities/{activityUuid}' \\\\\n-H 'X-Musement-Application: {applicationValue}' \\\\\n-H 'X-Musement-Version: 3.4.0' \\\\\n-H 'X-Musement-Currency: GBP' \\\\\n-H 'Authorization: Bearer {accessToken}'`, `36837264899849732000`)\"\n        >\n          <div class=\"gatsby-code-button\" title=\"Copy the code snippet\">Copy</div>\n          <div class=\"done-indicator done-indicator-36837264899849732000\">Copied</div>\n        </div>\n        <div class=\"gatsby-highlight\" data-language=\"bash\"><pre class=\"language-bash\"><code class=\"language-bash\"><span class=\"token function\">curl</span> <span class=\"token parameter variable\">-X</span> GET <span class=\"token string\">'{baseUrl}/activities/{activityUuid}'</span> <span class=\"token punctuation\">\\</span>\n<span class=\"token parameter variable\">-H</span> <span class=\"token string\">'X-Musement-Application: {applicationValue}'</span> <span class=\"token punctuation\">\\</span>\n<span class=\"token parameter variable\">-H</span> <span class=\"token string\">'X-Musement-Version: 3.4.0'</span> <span class=\"token punctuation\">\\</span>\n<span class=\"token parameter variable\">-H</span> <span class=\"token string\">'X-Musement-Currency: GBP'</span> <span class=\"token punctuation\">\\</span>\n<span class=\"token parameter variable\">-H</span> <span class=\"token string\">'Authorization: Bearer {accessToken}'</span></code></pre></div>\n      </div>\n<p>As a result, price properties in the response will use British pounds:</p>\n<div class=\"code-wrapper\">\n        <div class=\"gatsby-code-button-container\"\n             data-toaster-id=\"73924789687052350000\"\n             data-toaster-duration=\"1500\"\n             onClick=\"copyCodeToClipboard(`{\n\t[...]\n\t&quot;retail_price&quot;: { \n\t\t&quot;currency&quot;: &quot;GBP&quot;, \n\t\t&quot;value&quot;: 24, \n\t\t&quot;formatted_value&quot;: &quot;£ 24.00&quot; \n\t}\n\t[...] \n}`, `73924789687052350000`)\"\n        >\n          <div class=\"gatsby-code-button\" title=\"Copy the code snippet\">Copy</div>\n          <div class=\"done-indicator done-indicator-73924789687052350000\">Copied</div>\n        </div>\n        <div class=\"gatsby-highlight\" data-language=\"json\"><pre class=\"language-json\"><code class=\"language-json\"><span class=\"token punctuation\">{</span>\n\t<span class=\"token punctuation\">[</span>...<span class=\"token punctuation\">]</span>\n\t<span class=\"token property\">\"retail_price\"</span><span class=\"token operator\">:</span> <span class=\"token punctuation\">{</span> \n\t\t<span class=\"token property\">\"currency\"</span><span class=\"token operator\">:</span> <span class=\"token string\">\"GBP\"</span><span class=\"token punctuation\">,</span> \n\t\t<span class=\"token property\">\"value\"</span><span class=\"token operator\">:</span> <span class=\"token number\">24</span><span class=\"token punctuation\">,</span> \n\t\t<span class=\"token property\">\"formatted_value\"</span><span class=\"token operator\">:</span> <span class=\"token string\">\"£ 24.00\"</span> \n\t<span class=\"token punctuation\">}</span>\n\t<span class=\"token punctuation\">[</span>...<span class=\"token punctuation\">]</span> \n<span class=\"token punctuation\">}</span></code></pre></div>\n      </div>\n<p>For a full list of supported currencies, following the <a href=\"https://en.wikipedia.org/wiki/ISO_4217\">ISO 4217 standard</a>, make the following request:</p>\n<div class=\"code-wrapper\">\n        <div class=\"gatsby-code-button-container\"\n             data-toaster-id=\"35033747314665755000\"\n             data-toaster-duration=\"1500\"\n             onClick=\"copyCodeToClipboard(`curl -X GET '{baseUrl}/currencies' \\\\\n-H 'X-Musement-Application: {applicationValue}' \\\\\n-H 'X-Musement-Version: 3.4.0' \\\\\n-H 'Authorization: Bearer {accessToken}'`, `35033747314665755000`)\"\n        >\n          <div class=\"gatsby-code-button\" title=\"Copy the code snippet\">Copy</div>\n          <div class=\"done-indicator done-indicator-35033747314665755000\">Copied</div>\n        </div>\n        <div class=\"gatsby-highlight\" data-language=\"bash\"><pre class=\"language-bash\"><code class=\"language-bash\"><span class=\"token function\">curl</span> <span class=\"token parameter variable\">-X</span> GET <span class=\"token string\">'{baseUrl}/currencies'</span> <span class=\"token punctuation\">\\</span>\n<span class=\"token parameter variable\">-H</span> <span class=\"token string\">'X-Musement-Application: {applicationValue}'</span> <span class=\"token punctuation\">\\</span>\n<span class=\"token parameter variable\">-H</span> <span class=\"token string\">'X-Musement-Version: 3.4.0'</span> <span class=\"token punctuation\">\\</span>\n<span class=\"token parameter variable\">-H</span> <span class=\"token string\">'Authorization: Bearer {accessToken}'</span></code></pre></div>\n      </div>","headings":[{"value":"X-Musement-Currency header","depth":1}]},"contentItem":{"data":{"lastModified":"2025-12-18T16:31:42.000Z","enableToc":null,"disableLastModified":null,"tocMaxDepth":null,"requestLogin":false}},"siteConfig":{"enableToc":false,"disableLastModified":false,"tocMaxDepth":4}},"pageContext":{"matchPath":"","id":"35e3d2d7-8ded-5890-ab93-380a0332c482__redocly content/api/getting-started/headers/currency/","seo":{"title":"X-Musement-Currency header","description":"Learn how to the change the currency used in the Musement API responses.","image":"","keywords":null,"jsonLd":null,"lang":null,"siteUrl":null},"pageId":"api/getting-started/headers/currency.md","pageBaseUrl":"/api/getting-started/headers/currency","type":"markdown","toc":{"enable":true,"maxDepth":4,"headings":[{"depth":1,"value":"X-Musement-Currency header","id":"x-musement-currency-header"}]},"data":{"title":"","redirectFrom":["/guide/overview/currency/","/api/partner/general-topics/headers/currency/"],"seo":{"description":"Learn how to the change the currency used in the Musement API responses."}},"catalogInfo":null,"link":"/api/getting-started/headers/currency/","sidebarName":"__alternative-sidebar__-data-24763-api-sidebars.yaml","isLanding":false,"showPrevButton":null,"showNextButton":null,"apiVersions":null,"apiVersionId":null,"isDefaultApiVersion":null}},"staticQueryHashes":["1123603147","1302185487","1344209882","1398840060","1520077861","1975142765","2667623876","2950305614","3240152602","3743992808","561138138"]}