Skip to main content
GET
/
v1
/
call-summaries
/
{callId}
Get a summary for a call
curl --request GET \
  --url https://api.openphone.com/v1/call-summaries/{callId} \
  --header 'Authorization: <api-key>'
{
  "data": {
    "callId": "<string>",
    "nextSteps": [
      "<string>"
    ],
    "summary": [
      "<string>"
    ],
    "jobs": [
      {
        "icon": "<string>",
        "name": "<string>",
        "result": {
          "data": [
            {
              "name": "<string>",
              "value": "<string>"
            }
          ]
        }
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://www.quo.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Path Parameters

callId
string
required

The unique identifier of the call associated with the summary.

Pattern: ^AC(.*)$
Example:

"AC3700e624eca547eb9f749a06f"

Response

Success

data
object
required