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();
This repository was archived by the owner on May 6, 2026. It is now read-only.