gongGong API for searching calls, transcripts, and conversation intelligence. Use when working with Gong call recordings, sales conversations, transcripts, meeting data, or conversation analytics. Supports listing calls, fetching transcripts, user management, and activity stats.
Install via ClawdBot CLI:
clawdbot install jdrhyne/gongAccess Gong conversation intelligence - calls, transcripts, users, and analytics.
Store credentials in ~/.config/gong/credentials.json:
{
"base_url": "https://us-XXXXX.api.gong.io",
"access_key": "YOUR_ACCESS_KEY",
"secret_key": "YOUR_SECRET_KEY"
}
Get credentials from Gong: Settings → Ecosystem → API → Create API Key.
GONG_CREDS=~/.config/gong/credentials.json
GONG_BASE=$(jq -r '.base_url' $GONG_CREDS)
GONG_AUTH=$(jq -r '"\(.access_key):\(.secret_key)"' $GONG_CREDS | base64)
curl -s "$GONG_BASE/v2/endpoint" \
-H "Authorization: Basic $GONG_AUTH" \
-H "Content-Type: application/json"
curl -s "$GONG_BASE/v2/users" -H "Authorization: Basic $GONG_AUTH" | \
jq '[.users[] | {id, email: .emailAddress, name: "\(.firstName) \(.lastName)"}]'
curl -s -X POST "$GONG_BASE/v2/calls/extensive" \
-H "Authorization: Basic $GONG_AUTH" \
-H "Content-Type: application/json" \
-d '{
"filter": {
"fromDateTime": "2025-01-01T00:00:00Z",
"toDateTime": "2025-01-31T23:59:59Z"
},
"contentSelector": {}
}' | jq '{
total: .records.totalRecords,
calls: [.calls[] | {
id: .metaData.id,
title: .metaData.title,
started: .metaData.started,
duration_min: ((.metaData.duration // 0) / 60 | floor),
url: .metaData.url
}]
}'
curl -s -X POST "$GONG_BASE/v2/calls/transcript" \
-H "Authorization: Basic $GONG_AUTH" \
-H "Content-Type: application/json" \
-d '{"filter": {"callIds": ["CALL_ID"]}}' | \
jq '.callTranscripts[0].transcript[] | "\(.speakerName // "Speaker"): \(.sentences[].text)"' -r
curl -s -X POST "$GONG_BASE/v2/calls/extensive" \
-H "Authorization: Basic $GONG_AUTH" \
-H "Content-Type: application/json" \
-d '{
"filter": {"callIds": ["CALL_ID"]},
"contentSelector": {"exposedFields": {"content": true, "parties": true}}
}' | jq '.calls[0]'
curl -s -X POST "$GONG_BASE/v2/stats/activity/aggregate" \
-H "Authorization: Basic $GONG_AUTH" \
-H "Content-Type: application/json" \
-d '{
"filter": {
"fromDateTime": "2025-01-01T00:00:00Z",
"toDateTime": "2025-01-31T23:59:59Z"
}
}'
| Endpoint | Method | Use |
|----------|--------|-----|
| /v2/users | GET | List users |
| /v2/calls/extensive | POST | List/filter calls |
| /v2/calls/transcript | POST | Get transcripts |
| /v2/stats/activity/aggregate | POST | Activity stats |
| /v2/meetings | GET | Scheduled meetings |
Responses include cursor for pagination:
{"records": {"totalRecords": 233, "cursor": "eyJ..."}}
Include cursor in next request: {"cursor": "eyJ..."}
# Last 7 days
FROM=$(date -v-7d +%Y-%m-%dT00:00:00Z 2>/dev/null || date -d "7 days ago" +%Y-%m-%dT00:00:00Z)
TO=$(date +%Y-%m-%dT23:59:59Z)
2025-01-15T00:00:00Z)Generated Mar 1, 2026
Sales managers use Gong to analyze call recordings and transcripts from their team's recent deals. They identify coaching opportunities, track key phrases, and measure talk-to-listen ratios to improve win rates and rep effectiveness.
Support teams review Gong transcripts of customer interactions to ensure compliance, assess agent empathy, and identify common issues. This helps in training new agents and improving customer satisfaction scores through data-driven feedback.
Marketing analysts search Gong call data for mentions of competitors, product features, or pricing discussions. They extract insights to refine messaging, adjust strategies, and understand customer pain points directly from sales conversations.
HR and training departments use Gong to create best-practice examples from top-performing sales calls. They build training modules, highlight effective communication techniques, and accelerate new hire ramp-up by providing real-world learning materials.
Legal and compliance teams audit Gong transcripts to ensure adherence to regulations, such as data privacy or financial disclosures. They flag non-compliant language, monitor for risks, and maintain records for audits and reporting purposes.
Gong operates as a cloud-based SaaS platform with tiered pricing based on features, user seats, and data volume. Revenue is generated through monthly or annual subscriptions, often targeting enterprises with sales teams needing conversation intelligence tools.
Large organizations purchase enterprise licenses that include custom integrations, dedicated support, and advanced analytics. This model drives high-value contracts through direct sales, offering scalability and tailored solutions for complex business needs.
Gong provides API access for developers to build custom applications, automate workflows, or integrate with other systems like CRM or BI tools. Revenue comes from API usage fees, partner programs, or add-ons for extended data access and automation capabilities.
💬 Integration Tip
Ensure credentials are securely stored in the specified JSON file and use the provided curl examples with jq for parsing responses; handle pagination and date formatting as shown to manage large datasets effectively.
HubSpot CRM and CMS API integration for contacts, companies, deals, owners, and content management.
Partnership outreach, market research, competitor analysis, and proposal generation. Transform your AI agent into a strategic business development partner that identifies and cultivates growth opportunities.
CRM integration, lead tracking, outreach automation, and pipeline management. Transform your AI agent into a sales assistant that never lets leads slip through the cracks.
Manage Zhihu AI Bot to publish, like/unlike, comment, delete comments, and fetch ring or comment details using Zhihu API credentials.
ActiveCampaign CRM integration for lead management, deal tracking, and email automation. Use for syncing demo leads, managing clinic sales pipeline, and triggering follow-up sequences.
Query and analyze brand mentions from Octolens API. Use when the user wants to fetch mentions, track keywords, filter by source platforms (Twitter, Reddit, GitHub, LinkedIn, etc.), sentiment analysis, or analyze social media engagement. Supports complex filtering with AND/OR logic, date ranges, follower counts, and bookmarks.