Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
    • Yandex Cloud Partner program
  • Blog
  • Pricing
  • Documentation
© 2025 Direct Cursus Technology L.L.C.
Yandex SpeechSense
  • Getting started
    • Authentication with the API
      • Overview
        • Overview
        • Search
        • Get
  • Audit Trails events
  • Access management
  • Pricing policy
  • Release notes
  • FAQ

In this article:

  • HTTP request
  • Body parameters
  • Filter
  • AnyMatchFilter
  • IntRangeFilter
  • BoundsInclusive
  • DoubleRangeFilter
  • DateRangeFilter
  • DurationRangeFilter
  • BooleanFilter
  • Query
  • SortData
  • SortField
  • Response
  1. API reference
  2. REST
  3. Talk
  4. Search

Talk Analytics API, REST: Talk.Search

Written by
Yandex Cloud
Updated at November 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

Was the article helpful?

Previous
Overview
Next
Get
© 2025 Direct Cursus Technology L.L.C.