GET
/
export-service
/
api
/
v1
/
export
/
{exportFormat}
curl --request GET \
  --url https://export-service.vatis.tech/export-service/api/v1/export/{exportFormat} \
  --header 'Authorization: Bearer <token>'
{
  "transcription": {
    "text": "<string>",
    "words": [
      {
        "word": "<string>",
        "start": 123,
        "end": 123,
        "confidence": 123,
        "language": "<string>",
        "speakers": [
          "<string>"
        ],
        "speakersOverlap": true,
        "channel": "<string>"
      }
    ]
  },
  "utterances": [
    {
      "speakerIds": [
        "<string>"
      ],
      "overlap": true,
      "channel": "<string>",
      "start": 123,
      "end": 123,
      "text": "<string>",
      "words": [
        {
          "word": "<string>",
          "start": 123,
          "end": 123,
          "confidence": 123,
          "language": "<string>",
          "speakers": [
            "<string>"
          ],
          "speakersOverlap": true,
          "channel": "<string>"
        }
      ]
    }
  ],
  "summary": {
    "content": "<string>"
  },
  "askAnything": {},
  "sentimentAnalysis": {
    "segments": [
      {
        "text": "<string>",
        "sentiment": "negative",
        "channel": 123,
        "startTime": 123,
        "endTime": 123,
        "score": 123
      }
    ],
    "summary": {
      "channels": [
        {
          "channel": 123,
          "negativeCount": 123,
          "positiveCount": 123,
          "neutralCount": 123,
          "averageScore": 123,
          "sentiment": "negative"
        }
      ],
      "negativeCount": 123,
      "positiveCount": 123,
      "neutralCount": 123,
      "averageScore": 123,
      "sentiment": "negative"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

exportFormat
enum<string>
required

Export format

Available options:
JSON,
TEXT

Query Parameters

streams
any[]

List of stream ids for watching

streamsInclusion
enum<string>

Inclusion mode for the streams. When using 'EXCLUDE' the 'group' and 'count' must be specified

Available options:
INCLUDE,
EXCLUDE
group
string

Group id of the streams

count
integer

Number of streams to search. Used when the included streams are not specified

tags
any[]

List of tags to match

matchTags
enum<string>

Match mode for the tags. 'ALL' matches all tags, 'ANY' matches any tag.

Available options:
ALL,
ANY
timeout
integer

Timeout for the stream creation in milliseconds. If not specified, the maximum timeout allowed by the server will be used.

omitPayload
boolean

Exclude the payload from the result. If true, the payload value will be set to 'null'. This is compatible only with 'EVENTS' format.

Response

200
application/json - AudioIntelligenceResponseDto
Export response
transcription
object
utterances
object[]
summary
object
askAnything
object
sentimentAnalysis
object