Using js-genai with googleapis.com

TypeScript integration

✓ Official SDK
Install
npm install js-genai
Quick start
import Js_genai from 'js-genai';

const client = new Js_genai({ accessToken: "YOUR_ACCESS_TOKEN" });
Lists tables for the user.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://area120tables.googleapis.com/v1alpha1/tables
Gets a workspace. Returns NOT_FOUND if the workspace does not exist.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://area120tables.googleapis.com/v1alpha1/{name}
Lists workspaces for the user.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://area120tables.googleapis.com/v1alpha1/workspaces
SDK on GitHub 📄 API Docs
SDK
js-genai
TypeScript
API
googleapis.com
googleapis.com:area120tables
At a glance
Language TypeScript
Endpoints10
Base URLhttps://area120tables.googleapis.com
✓ Official