Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 366 Bytes

USAGE.md

File metadata and controls

19 lines (14 loc) · 366 Bytes
import { Bbc } from "github.com/speakeasy-sdks/bbc-typescript";

const bbc = new Bbc({
    apiKey: "<YOUR_API_KEY_HERE>",
});

async function run() {
    const result = await bbc.feeds.listAvailability({});

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

run();