const { records = [] } = await fetch(
"https://api.airtable.com/v0/(yourAppId)/(yourTableName)",
Authorization: "Bearer (insert token here)",
).then((res) => res.json());
const found = records.filter((rec) => rec.fields.Month === month.toLowerCase());
const builder = ChatlayerResponseBuilder();
builder.addSessionVariable("meetups", found);
builder.addSessionVariable("nomeetups", found);