Skip to main content
GET
/
api
/
calls
/
{callId}
/
transcript
Get call transcript
curl --request GET \
  --url https://api.recepta.ai/api/v1/api/calls/{callId}/transcript \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "message": "Transcript retrieved",
  "data": {
    "callId": "69af1467f97caa0d0e1e13e2",
    "transcript": "Agent: Thank you for calling, how may I help you?\nCaller: I have a question about...",
    "source": "database"
  }
}

Authorizations

x-api-key
string
header
required

Your Recepta API key (starts with rcp_)

Path Parameters

callId
string
required

Call ID

Response

Transcript retrieved

success
boolean
Example:

true

message
string
Example:

"Transcript retrieved"

data
object