Skip to main content
GET
/
raw
/
dbs
/
{dbName}
/
tables
/
{tableName}
/
cursors
Retrieve cursors for parallel reads
curl --request GET \
  --url https://{cluster}.cognitedata.com/api/v1/projects/{project}/raw/dbs/{dbName}/tables/{tableName}/cursors \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.

Path Parameters

dbName
string
required

Name of the database.

tableName
string
required

Name of the table.

Query Parameters

minLastUpdatedTime
integer<int64>

An exclusive filter, specified as the number of milliseconds that have elapsed since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC), minus leap seconds. The number of milliseconds since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC), minus leap seconds.

Required range: x >= 0
Example:

1730204346000

maxLastUpdatedTime
integer<int64>

An inclusive filter, specified as the number of milliseconds that have elapsed since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC), minus leap seconds. The number of milliseconds since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC), minus leap seconds.

Required range: x >= 0
Example:

1730204346000

numberOfCursors
integer<int32>

The number of cursors to return, by default it's 10.

Required range: 1 <= x <= 10000

Response

200 - application/json

Response with cursors

A list of cursors

items
string[]
Last modified on April 23, 2026