Loading API docs...
Authorize Google once, select the project and table, then append structured rows into BigQuery for analytics, QA, and downstream modeling. This page lists the required credentials, setup example, mapped endpoints, and production notes.
Base URL
https://api.trendsagi.com114
Routes
16
Guides
3
Languages
Warehouse destination for trend and automation row delivery
Authorize Google once, select the project and table, then append structured rows into BigQuery for analytics, QA, and downstream modeling.
Install
No SDK required. Use TrendsAGI BigQuery 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/bigquery/auth" \
-H "Authorization: Bearer $TRENDSAGI_API_KEY"
# 2) Complete authorization in the browser
# 3) Discover project, dataset, and table
curl -X GET "https://api.trendsagi.com/api/integrations/bigquery/projects" \
-H "Authorization: Bearer $TRENDSAGI_API_KEY"
curl -X GET "https://api.trendsagi.com/api/integrations/bigquery/datasets?project_id=analytics-prod" \
-H "Authorization: Bearer $TRENDSAGI_API_KEY"
curl -X GET "https://api.trendsagi.com/api/integrations/bigquery/tables?project_id=analytics-prod&dataset_id=trendsagi" \
-H "Authorization: Bearer $TRENDSAGI_API_KEY"
# 4) Save the destination
curl -X PUT "https://api.trendsagi.com/api/integrations/bigquery/selection" \
-H "Authorization: Bearer $TRENDSAGI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"project_id": "analytics-prod",
"dataset_id": "trendsagi",
"table_id": "trend_events"
}'# 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