example-data.com

currencies / #43

New Taiwan Dollar

TWD

Component variants

curl -sS \
  "https://example-data.com/api/v1/currencies/43" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/currencies/43"
);
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/43"
);
const currencie = (await res.json()) as Currencie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/currencies/43"
)
currencie = res.json()
{
  "id": 43,
  "code": "TWD",
  "name": "New Taiwan Dollar",
  "symbol": "NT$",
  "decimalDigits": 2
}
Draftbit