Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 399 Bytes

File metadata and controls

21 lines (16 loc) · 399 Bytes
import { Speakeasy } from "@speakeasy-api/speakeasy-client-sdk-typescript";

const speakeasy = new Speakeasy({
  security: {
    apiKey: "<YOUR_API_KEY_HERE>",
  },
});

async function run() {
  const result = await speakeasy.apis.getApis({});

  // Handle the result
  console.log(result);
}

run();