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 DataLens
  • DataLens neuroanalyst
  • DataLens Gallery
    • How to use the Public API
      • Overview
      • getConnection
      • createConnection
      • updateConnection
      • deleteConnection
      • getDashboard
      • createDashboard
      • updateDashboard
      • deleteDashboard
      • getDataset
      • createDataset
      • updateDataset
      • deleteDataset
      • validateDataset
      • getEntriesRelations
      • getEntries
      • getQLChart
      • deleteQLChart
      • getWizardChart
      • deleteWizardChart
      • getEditorChart
      • deleteEditorChart
      • createEditorChart
      • updateEditorChart
      • getEntriesPermissions
      • getAuditEntriesUpdates
      • listDirectory
  • Audit Trails events

In this article:

  • HTTP request
  • Body parameters
  • Filters
  • OrderBy
  • Response
  1. DataLens Public API
  2. DataLens API
  3. getEntries

DataLens API: Get entries

Written by
Yandex Cloud
Updated at January 16, 2026
  • HTTP request
  • Body parameters
  • Filters
  • OrderBy
  • Response

HTTP requestHTTP request

Returns the specified DataLens entry.

POST https://api.datalens.yandex.net/rpc/getEntries

Body parametersBody parameters

Request schema: application/json

{
  "<allOf>": [
    {
      "excludeLocked": "boolean",
      "includeData": "boolean",
      "includeLinks": "boolean",
      "filters": {
        "name": "string"
      },
      "orderBy": {
        "field": "string",
        "direction": "string"
      },
      "createdBy": "unknown",
      "page": "number",
      "pageSize": "number",
      "includePermissionsInfo": "boolean",
      "ignoreWorkbookEntries": "boolean"
    },
    "unknown"
  ]
}

All of:

Field

Description

excludeLocked

boolean

Exclude locked entries from results.

includeData

boolean

Include data in the response.

includeLinks

boolean

Include links in the response.

filters

Filters

Filtering configuration.

orderBy

OrderBy

Required field. Sorting configuration.

createdBy

Any of string | string

Filter entries by creator.

page

number

Page number for pagination.

pageSize

number

Number of entries per page.

includePermissionsInfo

boolean

Include permission information in response.

ignoreWorkbookEntries

boolean

Ignore workbook entries in results.

The body is empty.

Field

Description

Empty

FiltersFilters

Filtering configuration.

Field

Description

name

string

Filter entries by name.

OrderByOrderBy

Sorting configuration.

Field

Description

field

enum

Required field. Field to order by entries:

  • createdAt — date of field creation;
  • name — name of the field.

direction

enum

Required field. Sorting direction.

  • desc — descending;
  • asc — ascending.

ResponseResponse

HTTP Code: 200

Response schema: application/json

{
  "nextPageToken": "string",
  "entries": [
    {
      "<anyOf>": [
        {
          "isLocked": "boolean",
          "entryId": "string",
          "scope": "string",
          "type": "string"
        },
        {
          "entryId": "string",
          "key": "string",
          "scope": "string",
          "type": "string",
          "meta": "object | null",
          "createdAt": "string",
          "updatedAt": "string",
          "createdBy": "string",
          "updatedBy": "string",
          "savedId": "string",
          "publishedId": "string | null",
          "hidden": "boolean",
          "workbookId": "string | null",
          "workbookTitle": "string | null",
          "collectionId": "string | null",
          "collectionTitle": "string | null",
          "isFavorite": "boolean",
          "isLocked": "boolean",
          "permissions": {
            "execute": "boolean",
            "read": "boolean",
            "edit": "boolean",
            "admin": "boolean"
          },
          "links": "object | null",
          "data": {
            "string": "unknown"
          }
        }
      ]
    }
  ]
}

Field

Description

nextPageToken

string

Indicates if there are more pages.

entries[]

unknown

Required field. Entry information.

Was the article helpful?

Previous
getEntriesRelations
Next
getQLChart
© 2026 Direct Cursus Technology L.L.C.