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