Yandex Cloud
Search
Contact UsGet started
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • AI for business
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
© 2025 Direct Cursus Technology L.L.C.
Yandex Data Streams
  • Access management
  • Pricing policy
    • Overview
    • All methods
      • CreateStream
      • DecreaseStreamRetentionPeriod
      • DeleteStream
      • DescribeStream
      • IncreaseStreamRetentionPeriod
      • GetRecords
      • GetShardIterator
      • ListStreams
      • PutRecord
      • PutRecords
      • UpdateShardCount
    • Common errors
    • Examples
  • FAQ

In this article:

  • Request
  • Request options
  • Response
  • Response parameters
  • Errors
  1. HTTP API compatible with Amazon Kinesis Data Streams
  2. Methods
  3. ListStreams

ListStreams

Written by
Yandex Cloud
Updated at August 15, 2025
  • Request
    • Request options
  • Response
    • Response parameters
  • Errors

Returns a list of streams.

The HasMoreStreams response parameter indicates there are more streams to retrieve. To fetch remaining streams, use the last returned stream name as the ExclusiveStartStreamName parameter in your subsequent request.

RequestRequest

The request contains JSON-formatted data.

{
  "ExclusiveStartStreamName": "string",
  "Limit": number
}

Request optionsRequest options

Option Description
ExclusiveStartStreamName The name of the stream where output should begin

Type: String
Size: 1-128 characters.
The possible values are: [a-zA-Z0-9_.-]+
Required: No
Limit The maximum number of streams in the list. If you specify a value greater than 100, the response will contain 100 streams.

Type: Integer
Allowed values: 1-10000.
Default value: 100
Required: No

ResponseResponse

Successful requests return HTTP 200 with a JSON-formatted response body.

{
  "HasMoreStreams": boolean,
  "StreamNames": ["string"]
}

Response parametersResponse parameters

Parameter Description
HasMoreStreams If true, the list contains more streams to retrieve.

Type: Boolean
StreamNames Data stream name.

Type: String
Size: 1-128 characters.
The possible values are: [a-zA-Z][a-zA-Z0-9-]+*(?<!-)$

ErrorsErrors

Error Description
LimitExceededException The request limit is exceeded.

Errors common to all methods may occur.

Was the article helpful?

Previous
GetShardIterator
Next
PutRecord
© 2025 Direct Cursus Technology L.L.C.