Skip to main content
The Deno 2 Release Candidate is here
Learn more

telnyx-deno

Deno module for Telnyx API based on OpenAPI 3 spec

Usage

import { Telnyx } from "telnyx";

const telnyx = new Telnyx('TELNYX_API_KEY');

// List faxes
const faxes = await telnyx.programmableFaxCommands.listFaxes();

console.log(faxes);