New Zealand Dollar
NZD
currencies / #13
NZD
New Zealand Dollar
NZD
curl -sS \
"https://example-data.com/api/v1/currencies/13" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/currencies/13"
);
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/13"
);
const currencie = (await res.json()) as Currencie;import requests
res = requests.get(
"https://example-data.com/api/v1/currencies/13"
)
currencie = res.json() {
"id": 13,
"code": "NZD",
"name": "New Zealand Dollar",
"symbol": "NZ$",
"decimalDigits": 2
}