v1
latestOpenAPI 3.0.02026-08-0622087.9 KBGong
List all Gong calls
Returns a paginated list of Gong calls with summary information including title, duration, parties, topics, brief and call outcome. Requires the GONG API token passed as a request header.
get/api/gong/calls
Query parameters
per_pageinteger
Example:20
Number of calls per page (max 100, default 20)
pageinteger
Example:1
Page number
Response
Paginated list of Gong calls
Example response
{
"status": true,
"data": [
{
"id": "7782342274025937035",
"title": "Discovery Call - Acme Corp",
"started": "2024-03-01T10:00:00Z",
"duration_sec": 2743,
"url": "https://app.gong.io/call?id=7782342274025937035",
"direction": "Outbound",
"parties": [
{
"id": "234599484848423",
"name": "John Smith",
"email": "john@company.com",
"affiliation": "Internal",
"title": "Account Executive",
"speaker_id": "s1"
}
],
"topics": [
{
"name": "Pricing",
"duration": 340
}
],
"brief": "Discussion about pricing and next steps.",
"call_outcome": "Positive"
}
],
"meta": {
"total": 120,
"per_page": 20,
"current_page": 1,
"last_page": 6
}
}