Yandex Cloud
Search
Contact UsTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • 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
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex AI Studio
  • About Yandex AI Studio
  • Getting started with Model Gallery
  • Yandex Workflows
  • Switching from the AI Assistant API to Responses API
  • Compatibility with OpenAI
    • Overview
    • API authentication
        • Overview
        • listChatCompletions
        • createChatCompletion
        • getChatCompletion
        • updateChatCompletion
        • deleteChatCompletion
  • Quotas and limits
  • Pricing policy
  • Access management
  • Audit Trails events
  • Public materials
  • Release notes
  • Terms and definitions

In this article:

  • HTTP request
  • Query parameters
  • Response
  1. API references
  2. OpenAI-compatible APIs
  3. Chat
  4. listChatCompletions

REST: List Chat Completions

Written by
Yandex Cloud
Updated at December 30, 2025
  • HTTP request
  • Query parameters
  • Response

[CURRENTLY NOT SUPPORTED]

HTTP requestHTTP request

GET https://ai.api.cloud.yandex.net/v1/chat/completions

Query parametersQuery parameters

Field

Description

model

string

The model used to generate the Chat Completions.

metadata

unknown

A list of metadata keys to filter the Chat Completions by. Example: metadata[key1]=value1&metadata[key2]=value2

after

string

Identifier for the last chat completion from the previous pagination request.

limit

integer

Number of Chat Completions to retrieve.

order

enum

Sort order for Chat Completions by timestamp. Use asc for ascending order or desc for descending order. Defaults to asc.

  • asc
  • desc

ResponseResponse

HTTP Code: 200

A list of Chat Completions

Response schema: application/json

{
  "role": "string",
  "content": "unknown",
  "name": "string"
}

Schema reference for server-to-client Realtime events. Servers emit JSON messages where the type field selects the event schema.

Field

Description

role

enum

Required field. The role of the messages author, in this case function.

  • function

content

Any of string | null

name

string

Required field. The name of the function to call.

Was the article helpful?

Previous
Overview
Next
createChatCompletion
© 2026 Direct Cursus Technology L.L.C.