Skip to main content
GET
/
transcripts
/
filter-id
cURL
curl --request GET \
  --url https://alto.dialme.at/api/altov2/public/transcripts/filter-id \
  --header 'Authorization: Bearer <token>'
{
  "message": "success",
  "result": [
    {
      "_id": "tr_***",
      "assistant_id": "as_***",
      "conversation_id": "<string>",
      "timestamp": 123,
      "full_transcript": [
        {
          "text": "<string>",
          "sender": "<string>",
          "timestamp": 123
        }
      ],
      "transcript_summary": "<string>",
      "pre_questions": {},
      "analytics": [
        "<unknown>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Retrieve your key from Dashboard.

Query Parameters

assistant_id
string
required
limit
number

Total result

Required range: 0 <= x <= 1000
skip
number

Page index

Required range: 0 <= x <= 1000

Response

Successful response

message
string
Example:

"success"

result
object[]