Get Supported Currencies

https://app.myhealthnote.com/api/fhir/Dash/system/currencies
SYSTEM API GET ACTIVE 500/hour v1.0.0
Description

Get all currencies supported by the MyHealthNote Ecosystem for operations like subscriptions, donations, and payments, including those available specifically for each profile.

Endpoint
https://app.myhealthnote.com/api/fhir/Dash/system/currencies
Request Examples

cURL

curl -X GET \
  "https://app.myhealthnote.com/api/fhir/Dash/system/currencies" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Accept: application/json"

JavaScript/Node.js

const response = await fetch("https://app.myhealthnote.com/api/fhir/Dash/system/currencies", {
    headers: {
        "Authorization": "Bearer YOUR_ACCESS_TOKEN",
        "Accept": "application/json"
    }
});

const data = await response.json();
console.log(data);

Python

import requests

response = requests.get(
    "https://app.myhealthnote.com/api/fhir/Dash/system/currencies",
    headers={
        "Authorization": "Bearer YOUR_ACCESS_TOKEN",
        "Accept": "application/json"
    }
)

print(response.json())
Parameters
Parameter Type Required Default Description
profileId string No - Wise profile ID for profile-specific currencies
activeOnly boolean No true Return only active/enabled currencies
country string No - Filter by country
limit integer No 100 Results per page
Response Example
{
  "resourceType": "Bundle",
  "total": 150,
  "entry": [
    {
      "resource": {
        "resourceType": "ValueSet",
        "name": "Currency-USD",
        "extension": [
          {
            "url": "currencyCode",
            "valueCode": "USD"
          }
        ]
      }
    }
  ]
}
Try It Out

Enter your API token to test this endpoint: