TypeScript / Node.js SDK

@pontx/frankfurter

The operator-published SDK for Frankfurter exchange-rate API. Documentation and package releases share the same approved OAS.

v0.1.1Node.js ≥ 18ESM + CommonJSTypeScript declarations

Install and call

The SDK is produced by Pontx and typechecked and built before publication.

Install SDK
pnpm add @pontx/frankfurter
TypeScript usage
import currencyExchangeClient from "@pontx/frankfurter";

const result = await currencyExchangeClient.exchangeRates.getLatestRates({
  base: "USD",
  symbols: "JPY,CNY"
});

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.

Dedicated API CLI
pnpm add --global @pontx/frankfurter

pontx-frankfurter call exchangeRates.getLatestRates --base USD --symbols JPY,CNY --dry-run