Skip to main content
POST
/
extpipes
/
runs
/
list
Python SDK
runsList = client.extraction_pipelines.runs.list(external_id="test ext id", limit=5)

runs_list = client.extraction_pipelines.runs.list(external_id="test ext id", statuses=["seen"], limit=5)

from cognite.client.data_classes import ExtractionPipelineRun
res = client.extraction_pipelines.runs.list(external_id="extId", statuses="failure", created_time="24h-ago")
{
  "items": [
    {
      "status": "<string>",
      "id": 4503599627370496,
      "message": "<string>",
      "createdTime": 1730204346000
    }
  ],
  "nextCursor": "<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.

Body

application/json
filter
object
required
limit
integer<int32>
default:100

Limits the number of results to return.

Required range: 1 <= x <= 1000
cursor
string

Response

Response with list of extraction pipeline runs

Response with a list of elements.

items
object[]
nextCursor
string

The cursor to get the next page of results (if available).

Last modified on April 23, 2026