Get the summary for a call
curl --request GET \
--url https://dev-public-api.openphone.dev/calls/{callId}/summary \
--header 'Authorization: <api-key>' \
--header 'Quo-Api-Version: <quo-api-version>'{
"data": {
"callId": "AC3700e624eca547eb9f749a06f2eb1",
"status": "completed",
"type": "human",
"summary": [
"You talked about the weather."
],
"nextSteps": [
"Bring an umbrella."
],
"jobs": [
{
"icon": "<string>",
"name": "<string>",
"result": {
"data": [
{
"name": "<string>",
"value": "<string>"
}
]
}
}
],
"title": "Pricing enquiry"
}
}{
"message": "The input was invalid",
"docs": "https://quo.com/docs",
"title": "Bad Request",
"errors": [
{
"path": "/callId",
"message": "Expected string to match '^AC(.*)$'",
"value": "abc123",
"schema": {
"type": "TemplateLiteral",
"pattern": "^AC(.*)$"
}
}
]
}{
"message": "Unauthorized",
"docs": "https://quo.com/docs",
"title": "Unauthorized",
"trace": "6897907457496870895"
}{
"message": "User is forbidden to perform this action",
"docs": "https://quo.com/docs",
"title": "Forbidden",
"trace": "6897907457496870895"
}{
"message": "Call not found",
"docs": "https://quo.com/docs",
"title": "Not Found",
"trace": "6897907457496870895"
}{
"message": "We have encountered an unknown error",
"docs": "https://quo.com/docs",
"title": "Unknown",
"trace": "6897907457496870895"
}Calls
Get the summary for a call
Get a call’s summary. A call in the workspace always returns a summary object, even when none has been generated — read status to tell whether one is pending, will never exist, or failed.
GET
/
calls
/
{callId}
/
summary
Get the summary for a call
curl --request GET \
--url https://dev-public-api.openphone.dev/calls/{callId}/summary \
--header 'Authorization: <api-key>' \
--header 'Quo-Api-Version: <quo-api-version>'{
"data": {
"callId": "AC3700e624eca547eb9f749a06f2eb1",
"status": "completed",
"type": "human",
"summary": [
"You talked about the weather."
],
"nextSteps": [
"Bring an umbrella."
],
"jobs": [
{
"icon": "<string>",
"name": "<string>",
"result": {
"data": [
{
"name": "<string>",
"value": "<string>"
}
]
}
}
],
"title": "Pricing enquiry"
}
}{
"message": "The input was invalid",
"docs": "https://quo.com/docs",
"title": "Bad Request",
"errors": [
{
"path": "/callId",
"message": "Expected string to match '^AC(.*)$'",
"value": "abc123",
"schema": {
"type": "TemplateLiteral",
"pattern": "^AC(.*)$"
}
}
]
}{
"message": "Unauthorized",
"docs": "https://quo.com/docs",
"title": "Unauthorized",
"trace": "6897907457496870895"
}{
"message": "User is forbidden to perform this action",
"docs": "https://quo.com/docs",
"title": "Forbidden",
"trace": "6897907457496870895"
}{
"message": "Call not found",
"docs": "https://quo.com/docs",
"title": "Not Found",
"trace": "6897907457496870895"
}{
"message": "We have encountered an unknown error",
"docs": "https://quo.com/docs",
"title": "Unknown",
"trace": "6897907457496870895"
}Authorizations
Headers
API version header. Supported values: 2026-03-30
Available options:
2026-03-30 Path Parameters
The unique identifier of the call whose summary is being retrieved.
Pattern:
^AC(.*)$Example:
"AC3700e624eca547eb9f749a06f2eb1"
Response
OK
Show child attributes
Show child attributes
Was this page helpful?