Loading API docs...
Authorize Google Sheets, select the spreadsheet and tab, and append released delivery payloads into an operator-friendly ledger. This page lists the required credentials, setup example, mapped endpoints, and production notes.
Base URL
https://api.trendsagi.com114
Routes
16
Guides
3
Languages
Ops-friendly sheet append destination for live integrations
Authorize Google Sheets, select the spreadsheet and tab, and append released delivery payloads into an operator-friendly ledger.
Install
No SDK required. Use TrendsAGI Google Sheets integration endpoints.Required credentials
export TRENDSAGI_API_KEY="<TRENDSAGI_API_KEY>"
# 1) Request Google OAuth URL
curl -X GET "https://api.trendsagi.com/api/integrations/google-sheets/auth" \
-H "Authorization: Bearer $TRENDSAGI_API_KEY"
# 2) Complete authorization in the browser
# 3) Discover spreadsheet and sheet names
curl -X GET "https://api.trendsagi.com/api/integrations/google-sheets/spreadsheets" \
-H "Authorization: Bearer $TRENDSAGI_API_KEY"
curl -X GET "https://api.trendsagi.com/api/integrations/google-sheets/sheets?spreadsheet_id=1abcDEFghIJ" \
-H "Authorization: Bearer $TRENDSAGI_API_KEY"
# 4) Save the append destination
curl -X PUT "https://api.trendsagi.com/api/integrations/google-sheets/selection" \
-H "Authorization: Bearer $TRENDSAGI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"spreadsheet_id": "1abcDEFghIJ",
"sheet_name": "Trend Events",
"value_input_option": "RAW"
}'# Save as quickstart.sh
bash quickstart.sh1. Install
Add SDK/dependency for this integration path.
2. Authenticate
Set API key and any provider-specific credentials.
3. Map Endpoints
Use mapped endpoints below to build deterministic flow.
4. Harden
Add rate-limit backoff, idempotency, and safety gates.
Endpoint Mapping
Each integration is mapped to specific API endpoints so teams can compose deterministic workflows.
Production Notes