Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 312 Bytes

File metadata and controls

18 lines (13 loc) · 312 Bytes
import { Attio } from "attio-js";

const attio = new Attio({
  apiKey: process.env["ATTIO_API_KEY"] ?? "",
});

async function run() {
  const result = await attio.objects.list();

  console.log(result);
}

run();