Google Workspace APIs providing access to Google Drive, Docs, and Sheets.
Google Workspace APIs providing access to Google Drive, Docs, and Sheets. Best for workflows that need to manage files, read/write spreadsheets, or edit documents — storage and documents in one provider, unlike Notion (structured knowledge only). Gmail and Google Calendar are served separately by the Gmail and Google Calendar providers.9 example endpoints available through Lava’s AI Gateway. See the Google Workspace API docs for full documentation.
This provider requires your own credentials — connect your API key or OAuth account before use.
This is a catch-all provider — any valid URL under https://www.googleapis.com is supported. Drive, Docs, and Sheets APIs. Multiple base URLs — use get_provider_docs for endpoint reference. The endpoints below are curated examples.
const data = await lava.gateway('https://sheets.googleapis.com/v4/spreadsheets/{spreadsheetId}/values/{range}:append?valueInputOption=USER_ENTERED', { body: {"values":[["Row 1 Col A","Row 1 Col B"]]} });
curl -X POST "https://api.lava.so/v1/forward?u=https%3A%2F%2Fsheets.googleapis.com%2Fv4%2Fspreadsheets%2F%7BspreadsheetId%7D%2Fvalues%2F%7Brange%7D%3Aappend%3FvalueInputOption%3DUSER_ENTERED" \ -H "Authorization: Bearer $LAVA_SECRET_KEY" \ -H "Content-Type: application/json" \ -d '{"values":[["Row 1 Col A","Row 1 Col B"]]}'