Hungarian Forint
HUF
currencies / #25
HUF
Hungarian Forint
HUF
curl -sS \
"https://example-data.com/api/v1/currencies/25" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/currencies/25"
);
const currencie = await res.json();import type { Currencie } from "https://example-data.com/types/currencies.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/currencies/25"
);
const currencie = (await res.json()) as Currencie;import requests
res = requests.get(
"https://example-data.com/api/v1/currencies/25"
)
currencie = res.json() {
"id": 25,
"code": "HUF",
"name": "Hungarian Forint",
"symbol": "Ft",
"decimalDigits": 2
}