Yandex Cloud
Поиск
Связаться с намиПодключиться
  • Документация
  • Блог
  • Все сервисы
  • Статус работы сервисов
    • Доступны в регионе
    • Инфраструктура и сеть
    • Платформа данных
    • Контейнеры
    • Инструменты разработчика
    • Бессерверные вычисления
    • Безопасность
    • Мониторинг и управление ресурсами
    • AI Studio
    • Бизнес-инструменты
  • Все решения
    • По отраслям
    • По типу задач
    • Экономика платформы
    • Безопасность
    • Техническая поддержка
    • Каталог партнёров
    • Обучение и сертификация
    • Облако для стартапов
    • Облако для крупного бизнеса
    • Центр технологий для общества
    • Партнёрская программа
    • Поддержка IT-бизнеса
    • Облако для фрилансеров
    • Обучение и сертификация
    • Блог
    • Документация
    • Мероприятия и вебинары
    • Контакты, чаты и сообщества
    • Идеи
    • Истории успеха
    • Тарифы Yandex Cloud
    • Промоакции и free tier
    • Правила тарификации
  • Документация
  • Блог
Проект Яндекса
© 2025 ТОО «Облачные Сервисы Казахстан»
Yandex SpeechSense
  • Начало работы
    • Аутентификация в API
      • Overview
        • Overview
        • Search
        • Get
  • Аудитные логи Audit Trails
  • Управление доступом
  • Правила тарификации
  • История изменений
  • Вопросы и ответы

В этой статье:

  • HTTP request
  • Body parameters
  • Filter
  • AnyMatchFilter
  • IntRangeFilter
  • BoundsInclusive
  • DoubleRangeFilter
  • DateRangeFilter
  • DurationRangeFilter
  • BooleanFilter
  • Query
  • SortData
  • SortField
  • Response
  1. Справочник API
  2. REST (англ.)
  3. Talk
  4. Search

Talk Analytics API, REST: Talk.Search

Статья создана
Yandex Cloud
Обновлена 26 ноября 2024 г.
  • HTTP request
  • Body parameters
  • Filter
  • AnyMatchFilter
  • IntRangeFilter
  • BoundsInclusive
  • DoubleRangeFilter
  • DateRangeFilter
  • DurationRangeFilter
  • BooleanFilter
  • Query
  • SortData
  • SortField
  • Response

rpc for searching talks. will return ids only

HTTP requestHTTP request

POST https://rest-api.speechsense.yandexcloud.net/speechsense/v1/talks/search

Body parametersBody parameters

{
  "organizationId": "string",
  "spaceId": "string",
  "connectionId": "string",
  "projectId": "string",
  "filters": [
    {
      "key": "string",
      // Includes only one of the fields `anyMatch`, `intRange`, `doubleRange`, `dateRange`, `durationRange`, `booleanMatch`
      "anyMatch": {
        "values": [
          "string"
        ]
      },
      "intRange": {
        "fromValue": "string",
        "toValue": "string",
        "boundsInclusive": {
          "fromInclusive": "boolean",
          "toInclusive": "boolean"
        }
      },
      "doubleRange": {
        "fromValue": "number",
        "toValue": "number",
        "boundsInclusive": {
          "fromInclusive": "boolean",
          "toInclusive": "boolean"
        }
      },
      "dateRange": {
        "fromValue": "string",
        "toValue": "string",
        "boundsInclusive": {
          "fromInclusive": "boolean",
          "toInclusive": "boolean"
        }
      },
      "durationRange": {
        "fromValue": "string",
        "toValue": "string",
        "boundsInclusive": {
          "fromInclusive": "boolean",
          "toInclusive": "boolean"
        }
      },
      "booleanMatch": {
        "value": "boolean"
      },
      // end of the list of possible fields
      "inverse": "boolean",
      "channelNumber": "string"
    }
  ],
  "query": {
    "text": "string",
    "inverse": "boolean",
    "channelNumber": "string"
  },
  "pageSize": "string",
  "pageToken": "string",
  "sortData": {
    "fields": [
      {
        "field": "string",
        "order": "string",
        "position": "string"
      }
    ]
  }
}

Field

Description

organizationId

string

id of organization

spaceId

string

id of space

connectionId

string

id of connection

projectId

string

id of project

filters[]

Filter

metadata keys filters (user and system)

query

Query

Full-text search query

pageSize

string (int64)

page size, from 1 to 1000, default 100

pageToken

string

next page token, if page is not first

sortData

SortData

talks sorting options

FilterFilter

Field

Description

key

string

metadata key (user.some_key / system.created_at / analysis.speechkit.duration)

anyMatch

AnyMatchFilter

find talk matched by any text filters

Includes only one of the fields anyMatch, intRange, doubleRange, dateRange, durationRange, booleanMatch.

intRange

IntRangeFilter

find talks with value from int range

Includes only one of the fields anyMatch, intRange, doubleRange, dateRange, durationRange, booleanMatch.

doubleRange

DoubleRangeFilter

find talks with value from double range

Includes only one of the fields anyMatch, intRange, doubleRange, dateRange, durationRange, booleanMatch.

dateRange

DateRangeFilter

find talks with value from date range

Includes only one of the fields anyMatch, intRange, doubleRange, dateRange, durationRange, booleanMatch.

durationRange

DurationRangeFilter

find talks with value from duration range

Includes only one of the fields anyMatch, intRange, doubleRange, dateRange, durationRange, booleanMatch.

booleanMatch

BooleanFilter

find talks with value equals boolean

Includes only one of the fields anyMatch, intRange, doubleRange, dateRange, durationRange, booleanMatch.

inverse

boolean

channelNumber

string (int64)

channel number to apply filter for, starting with 0. applies to all channels if not specified

AnyMatchFilterAnyMatchFilter

Field

Description

values[]

string

values list to match with "OR" operator

IntRangeFilterIntRangeFilter

Field

Description

fromValue

string (int64)

toValue

string (int64)

boundsInclusive

BoundsInclusive

BoundsInclusiveBoundsInclusive

indicates whether to include range boundaries

Field

Description

fromInclusive

boolean

include from bound

toInclusive

boolean

include to bound

DoubleRangeFilterDoubleRangeFilter

Field

Description

fromValue

number (double)

toValue

number (double)

boundsInclusive

BoundsInclusive

DateRangeFilterDateRangeFilter

Field

Description

fromValue

string (date-time)

String in RFC3339 text format. The range of possible values is from
0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z, i.e. from 0 to 9 digits for fractions of a second.

To work with values in this field, use the APIs described in the
Protocol Buffers reference.
In some languages, built-in datetime utilities do not support nanosecond precision (9 digits).

toValue

string (date-time)

String in RFC3339 text format. The range of possible values is from
0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z, i.e. from 0 to 9 digits for fractions of a second.

To work with values in this field, use the APIs described in the
Protocol Buffers reference.
In some languages, built-in datetime utilities do not support nanosecond precision (9 digits).

boundsInclusive

BoundsInclusive

DurationRangeFilterDurationRangeFilter

Field

Description

fromValue

string (duration)

toValue

string (duration)

boundsInclusive

BoundsInclusive

BooleanFilterBooleanFilter

Field

Description

value

boolean

QueryQuery

Field

Description

text

string

inverse

boolean

should or should NOT match

channelNumber

string (int64)

id of channel to search ("1", "2", ..., any channel if not set)

SortDataSortData

Field

Description

fields[]

SortField

SortFieldSortField

Field

Description

field

string

sorting key

order

enum (SortOrder)

sorting order by current field

  • SORT_ORDER_UNSPECIFIED
  • SORT_ORDER_ASC
  • SORT_ORDER_DESC

position

string (int64)

number of field in comparing order (sort by key1 (position = 0), then key2 (position = 1), then key3...)

ResponseResponse

HTTP Code: 200 - OK

{
  "talkIds": [
    "string"
  ],
  "talksCount": "string",
  "nextPageToken": "string"
}

Field

Description

talkIds[]

string

page results entries

talksCount

string (int64)

total documents matched

nextPageToken

string

page token for next request

Была ли статья полезна?

Предыдущая
Overview
Следующая
Get
Проект Яндекса
© 2025 ТОО «Облачные Сервисы Казахстан»