TypeScript SDK
@pontx/currencybeacon-rest
The operator-published SDK for CurrencyBeacon exchange-rate API covers every Endpoint in the current PontxSpec.
SDK quality gate
The source for v0.1.1 passed its complete unit suite and built-package E2E on Node.js 18 / 20 / 22.
Install and call
The SDK is produced by Pontx and typechecked and built before publication.
pnpm add @pontx/currencybeacon-restimport { createCurrencyBeaconClient } from "@pontx/currencybeacon-rest";
const client = createCurrencyBeaconClient({
apiKey: process.env.PONTX_CURRENCYBEACON_API_KEY!
});
const result = await client.latest({ base: "USD", symbols: "EUR,GBP" });Command-line access
This npm package also publishes a dedicated CLI for the API. Use dry-run to inspect parameters, then supply your own provider credentials when required.
pnpm add --global @pontx/currencybeacon-rest
pontx-currencybeacon-rest call latest --base USD --symbols EUR,GBP --dry-run