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 all the Photos that belong to the user. > Note: Recently created photos…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://streetviewpublish.googleapis.com/v1/photos
Lists all the PhotoSequences that belong to the user, in descending CreatePho…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://streetviewpublish.googleapis.com/v1/photoSequences
Gets the metadata of the specified Photo. This method returns the following e…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://streetviewpublish.googleapis.com/v1/photo/{photoId}
SDK on GitHub 📄 API Docs
SDK
js-genai
TypeScript
API
googleapis.com
googleapis.com:streetviewpublish
At a glance
Language TypeScript
Endpoints14
Base URLhttps://streetviewpublish.googleapis.com
✓ Official