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" });
Returns the spreadsheet at the given ID. The caller must specify the spreadsh…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://sheets.googleapis.com/v4/spreadsheets/{spreadsheetId}
Returns a range of values from a spreadsheet. The caller must specify the spr…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://sheets.googleapis.com/v4/spreadsheets/{spreadsheetId}/values/{range}
Returns one or more ranges of values from a spreadsheet. The caller must spec…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://sheets.googleapis.com/v4/spreadsheets/{spreadsheetId}/values:batchGet
SDK on GitHub 📄 API Docs
SDK
js-genai
TypeScript
API
googleapis.com
googleapis.com:sheets
At a glance
Language TypeScript
Endpoints17
Base URLhttps://sheets.googleapis.com
✓ Official