cURL
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 }
Get entity extractions for a recording
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Recording ID to get entity extractions for
Show child attributes
The ID of the entity extraction
"extraction_001"
The ID of the recording
"recording_001"
The extracted LLM output from the entity definition.
[ { "name": "Objection Reason", "value": "Financial Concerns" }]
The timestamp when the entity extraction was created
"2021-01-01T00:00:00Z"
The timestamp when the entity extraction was last updated