Batteries Included. Works With Anything.
Native integrations for the GTM stack you already use. Webhook handoff for everything else.
Native Integrations
Built-in support for the tools GTM teams use every day. BYO API keys — no markup.
CRM & Support
Core CRM connectorsSalesforce
Match, enrich, and sync Account/Contact/Lead records
OAuthHubSpot
Pull contacts, upsert records, sync properties
OAuthDynamics 365
Solution orchestration, drift detection, and pack/apply with receipts
OAuthZendesk
Enrich with ticket stats per org or per user
API KeyEnrichment
Multi-provider waterfallFoundryGraph
Company resolution and firmographics (included free)
API KeyApollo
Contact enrichment and email finding
OAuthZoomInfo
Enterprise contact and company data
OAuthPDL (People Data Labs)
Contact data enrichment
API KeyNimbleway
Web data collection and structured extraction
API KeyFullEnrich
Waterfall contact enrichment (15+ providers)
API KeyData & Reporting
Your operational layerGoogle Sheets
Full read/write/sync with formula support
OAuthGoogle Apps Script
Pull, push, and run bound scripts
OAuthTableau Cloud
Publish workbooks and extracts
API KeyLooker
Spec-first dashboard provisioning, introspection, and iterative editing
OAuthDocumentation
Publish what you didNotion
Publish execution summaries and documentation
API KeyOutline
Self-hosted wiki publishing
API KeyGoogle Docs
Create and manage documents programmatically
OAuthConfluence
Publish and sync documentation to Atlassian wikis
API KeyGoogle Slides
Generate and update presentations programmatically
OAuthSequencing
Activate your dataApollo Sequences
Push contacts to email sequences
OAuthHeyReach
LinkedIn automation and connection campaigns
API KeyOutreach.io
Enterprise sales engagement and sequences
OAuthInstantly
Cold email sequencing
API KeySmartlead
Multi-channel outreach sequences
API KeyAmplemarket
AI-powered sales engagement and multi-channel sequencing
API KeyJustCall
Sales dialer with dynamic/predictive calling and SMS
API KeyWorks With Anything
Gremlin outputs structured JSON designed for workflow platforms. Send results to any webhook endpoint, trigger downstream automations, or hand off to your existing N8N, Pipedream, Make, or Zapier workflows.
--json-summary flag on any commandg-gremlin notifyN8N
Self-hosted workflow automation
Pipedream
Developer-first integration platform
Make
Visual automation builder
Zapier
No-code workflow automation
# Send enrichment results to your webhook
g-gremlin enrich --csv leads.csv \
--waterfall --budget 50 \
--output enriched.csv \
--json-summary \
--webhook my-n8n-endpoint
# Webhook receives structured JSON:
{
"command": "enrich",
"status": "success",
"rows_processed": 127,
"rows_enriched": 124,
"cost_usd": 38.20,
"output_file": "enriched.csv",
"providers_used": ["apollo", "zoominfo"],
"timestamp": "2025-01-15T18:30:00Z"
}Data Sinks
Land your processed data anywhere with the sink command.
BigQuery
Append or replace tables in GCP
Redshift
AWS data warehouse via S3 staging
Snowflake
Cloud data warehouse via S3/GCS
S3 / GCS
Upload CSVs to cloud storage buckets
Any Webhook
POST results to any HTTP endpoint
# Send to BigQuery
g-gremlin sink bq --csv enriched.csv \
--dataset gtm_data --table leads_enriched
# Send to Redshift via S3 staging
g-gremlin sink redshift --csv enriched.csv \
--cluster my-cluster --database analytics --table leads
# Send to Snowflake
g-gremlin sink snowflake --csv enriched.csv \
--account xy12345 --database REVOPS --table LEADS
# Upload to S3
g-gremlin sink s3 --csv enriched.csv \
--bucket my-bucket --key exports/leads.csv
# POST to webhook
g-gremlin sink webhook --csv enriched.csv \
--url https://hooks.example.com/ingestIntegrations FAQ
Do I need native support for every tool in my stack?
No. Use native connectors where available and use webhook or sink commands for systems outside the built-in catalog.
How should I validate integration setup?
Start with quickstart connectivity checks and doctor commands, then use playbooks to validate your end-to-end workflow on real data.
Where are command-level details documented?
The CLI page is the canonical command catalog. This page focuses on supported systems and integration patterns.
BYO API Keys — No Markup
Use your own API keys for enrichment providers. Gremlin doesn't mark up data costs — you pay providers directly at their rates. Your keys stay in your local keychain, never sent to our servers.
g-gremlin auth add-key --provider apolloReady to Connect Your Stack?
Start with the quickstart guide. Connect your first integration in minutes.