Skip to main content
GET
/
context
/
entitymatching
/
pipelines
List pipelines
curl --request GET \
  --url https://{cluster}.cognitedata.com/api/v1/projects/{project}/context/entitymatching/pipelines \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": 4503599627370496,
      "createdTime": 1730204346000,
      "sources": {
        "dataSetIds": [
          {
            "externalId": "my.known.id"
          }
        ],
        "resource": "assets"
      },
      "targets": {
        "dataSetIds": [
          {
            "externalId": "my.known.id"
          }
        ],
        "resource": "assets"
      },
      "lastUpdatedTime": 1730204346000,
      "owner": "alice@example.com",
      "externalId": "my.known.id",
      "name": "myPipeline",
      "description": "My pipeline",
      "modelParameters": {
        "featureType": "bigram"
      },
      "trueMatches": [
        {
          "sourceId": 23,
          "targetExternalId": "my.known.id"
        }
      ],
      "confirmedMatches": [
        {
          "sourceId": 23,
          "targetExternalId": "my.known.id"
        }
      ],
      "rejectedMatches": [
        {
          "sourceId": 23,
          "targetExternalId": "my.known.id"
        }
      ],
      "useExistingMatches": false,
      "generateRules": true,
      "replacements": [
        {
          "field": "*",
          "string": "Bottom-hole pressure",
          "replacement": "bhp"
        }
      ],
      "rules": [],
      "rejectedRules": [],
      "scoreThreshold": 0.7,
      "scheduleInterval": 7200,
      "lastRun": {
        "status": "Queued",
        "createdTime": 1730204346000,
        "startTime": 1730204346000,
        "statusTime": 1730204346000,
        "jobId": 123,
        "errorMessage": null
      }
    }
  ],
  "nextCursor": "4zj0Vy2fo0NtNMb229mI9r1V3YG5NBL752kQz1cKtwo"
}

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.

Query Parameters

limit
integer
default:100

Limits the number of results to be returned. The maximum results returned by the server is 100, even if you specify a higher limit.

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

Cursor for paging through results. In general, if a response contains a nextCursor property, it means that there may be more results, and you should pass that value as the cursor parameter in the next request.

Note that the cursor may or may not be encrypted, but either way, it is not intended to be decoded. Its internal structure is not a part of the public API, and may change without notice. You should treat it as an opaque string and not attempt to craft your own cursors.

Example:

"4zj0Vy2fo0NtNMb229mI9r1V3YG5NBL752kQz1cKtwo"

Response

List of pipelines

items
object[]
required
nextCursor
string | null

A cursor to get the next page of results (if available). If you want the next page of results, call the endpoint with the same parameters, and set cursor to this value.

Example:

"4zj0Vy2fo0NtNMb229mI9r1V3YG5NBL752kQz1cKtwo"

Last modified on April 23, 2026