Skip to main content
POST
/
sequences
/
search
JavaScript SDK
const sequences = await client.sequences.search({
  filter: {
    assetIds: [1, 2]
  },
  search: {
    query: 'n*m* desc*ion'
  }
});
{
  "items": [
    {
      "id": 1,
      "columns": [
        {
          "valueType": "DOUBLE",
          "createdTime": 100000000000,
          "lastUpdatedTime": 100000000000,
          "name": "depth",
          "externalId": "DPS1",
          "description": "Optional description",
          "metadata": {
            "extracted-by": "cognite"
          }
        }
      ],
      "createdTime": 100000000000,
      "lastUpdatedTime": 100000000000,
      "name": "Any relevant name",
      "description": "Optional description",
      "assetId": 1221123111,
      "externalId": "my.known.id",
      "metadata": {
        "extracted-by": "cognite"
      },
      "dataSetId": 2718281828459
    }
  ]
}

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

Retrieves a list of sequences matching the given criteria. This operation doesn't support pagination.

filter
object
limit
integer<int32>
default:100

Returns up to this many results.

Required range: 1 <= x <= 1000

Response

200 - application/json

Response with a list of sequences matching the given criteria.

items
object[]
required
Last modified on April 23, 2026