1
2
3
4
5
6
7
8
9
10
import { Airtable } from "https://deno.land/x/airtable@v1.1.1/mod.ts";
const airtable = new Airtable({
apiKey: Deno.env.get("airtable_pat"),
baseId: "app0TOKIOXvF3zoS2",
tableName: "tblRJj6ty16uR9QhC",
});
// Sample data from: https://blog.airtable.com/database-vs-spreadsheet/
const results = await airtable.select();
console.log(results);