Skip to main content
GET
/
v1
/
core
/
entities
/
extractions
/
{recordingId}
Get entity extractions for a recording
curl --request GET \
  --url https://api.example.com/v1/core/entities/extractions/{recordingId} \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "extraction_001",
      "recordingId": "recording_001",
      "extraction": [
        {
          "name": "Objection Reason",
          "value": "Financial Concerns"
        }
      ],
      "createdAt": "2021-01-01T00:00:00Z",
      "updatedAt": "2021-01-01T00:00:00Z"
    }
  ],
  "cursor": "<string>",
  "pageSize": 123,
  "limit": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

recordingId
string
required

Recording ID to get entity extractions for

Response

Get entity extractions for a recording

data
object[]
required
cursor
pageSize
number
limit
number