Skip to content
This repository was archived by the owner on May 6, 2026. It is now read-only.

Latest commit

 

History

History
18 lines (13 loc) · 326 Bytes

File metadata and controls

18 lines (13 loc) · 326 Bytes
import { Creem } from "creem";

const creem = new Creem({
  apiKey: process.env["CREEM_API_KEY"] ?? "",
});

async function run() {
  const result = await creem.products.get("prod_1234567890");

  console.log(result);
}

run();