How AI is applied across API Evangelist and APIs.io. Read my AI disclosure →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

Cognite Files API

A file stores a sequence of bytes connected to one or more assets. Forexample, a file can contain a piping and instrumentation diagram (P&IDs)showing how multiple assets are connected.Each file is identified by the 'id' field, which is generated internallyfor each new file. Each file's 'id' field is unique within a project.The 'externalId' field is optional, but can also be used to identify a file.The 'externalId' (if used) must be unique within a project.Files are created in two steps; First the metadata is stored in a fileobject, and then the file contents are uploaded. This means that files canexist in a non-uploaded state. The upload state is reflected in the 'uploaded'field in responses.Asset references obtained from a file - through asset ids - may beinvalid, simply by the non-transactional nature of HTTP.They are maintained in an eventual consistent manner.## Rate and concurrency limitsBoth the rate of requests (denoted as request per second, or ‘**rps**’) and the number of concurrent (parallel) requests are governed by limits,for all CDF API endpoints. If a request exceeds one of the limits,it will be throttled with a `429: Too Many Requests` response. More on limit typesand how to avoid being throttled is described[here](https://docs.cognite.com/dev/concepts/resource_throttling).Limits are defined at both the overall API service level, and on the API endpoints belonging to the service.Some types of requests consume more resources (compute, storage IO) than others, and where a service handlesmultiple concurrent requests with varying resource consumption.For example, ‘CRUD’ type requests (**C**reate, **R**etrieve, **R**equest ByIDs, **U**pdate and **D**elete and similar) are far less resourceintensive than ‘Analytical’ type requests (List, Search and Filter) and in addition, the most resourceintensive Analytical endpoint of all, Aggregates, receives its own request budget within the overall Analytical request budget.The version 1.0 limits for the overall API service and its constituent endpoints are illustrated in the diagram below.These limits are subject to change, pending review of changing consumption patterns and resource availability over time:### Translating RPS into data speedA single request may retrieve up to 1000 items. In the context of Files, 1 item = 1 file recordTherefore, the maximum theoretical data speed at the top API service level is 160,000 items per second for all consumers,and 120,000 for a single identity or client in a project.### Use of Partitions / Parallel RetrievalAs a general guidance, Parallel Retrieval is a technique that should be used where due to query complexity, retrieval of data in asingle request session turns out to be slow. By parallelizing such requests, data retrieval performance can be tuned to meet theclient application needs. Parallel retrieval may also be used where retrieval of large sets of data is required, up to thecapacity limits defined for a given API service. For example (using the Files API request budget):* A single request may retrieve up to 1000 items* Up to 23 requests per second may be issued for an analytical query (per identity), such as when using /list or /filter API endpoints* This provides a theoretical maximum of 23,000 items read per second per identity* The query complexity may result in it taking longer than 1s to read or write 1000 items in a single request* Therefore, it is appropriate to specify the query to retrieve a lower number of items per request, and retrieve more items in parallel, up to the theoretical maximum performance of 23,000 items per second.**Important Note:**Parallel retrieval should be only used in situations where, due to query complexity,a single request flow provides data retrieval speeds that are significantly less than the theoretical maximum.Parallel retrieval does not act as a speed multiplier on optimally running queries. Regardless of the numberof concurrent requests issued, the overall requests per second limit still applies.So for example, a single request returning data at approximately 18,000 items per second will onlybenefit from adding a second parallel request, the capacity of which goes somewhat wastedas only an additional 5,000 items per second will return before the request rate budget limit is reached.

Cognite Files API is one of 90 APIs that Cognite publishes on the APIs.io network, described by a machine-readable OpenAPI specification.

Tagged areas include File. The published artifact set on APIs.io includes an OpenAPI specification.

This API exposes 15 operations across 14 paths, and defines 104 schemas. It is described by OpenAPI 3.2.0, at version v1.

Requests are made against a single base URL, https://{cluster}.cognitedata.com/api/v1/projects/{project}.

15 operations 14 paths 104 schemas 3 GET12 POST

Metadata

The identity and technical contract details declared by the specification.

Specification
OpenAPI 3.2.0
API Version
v1
Base URL
https://api.cognitedata.com
Authentication
HTTP Bearer, OAuth 2.0, OAuth 2.0, OAuth 2.0, OpenID Connect
Resource Areas
1

Authentication & Security 5

Cognite Files API declares 5 security schemes for authenticating requests. It accepts HTTP bearer tokens (OpenID Connect or OAuth2 token) (oidc-token). It supports OAuth 2.0 (oauth2-client-credentials) using the clientCredentials flow, exposing 1 scope. It supports OAuth 2.0 (oauth2-auth-code) using the authorizationCode flow, exposing 1 scope. It supports OAuth 2.0 (oauth2-open-industrial-data) using the clientCredentials flow, exposing 1 scope. It supports OpenID Connect (org-oidc-token) discovered at https://auth.cognite.com/.well-known/openid-configuration. By default, every request must be authenticated.

  • oidc-token — 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 acce…
  • oauth2-client-credentials — 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 acce…
  • oauth2-auth-code — 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 acce…
  • oauth2-open-industrial-data — Auth flow for Open Industrial Data. Get your client secret from https://hub.cognite.com/open-industrial-data-211.
  • org-oidc-token — Access token issued by the Cognite authorization server, and valid for the target organization. The token must be an OpenID Connect token, and it can be obtain…

Paths & Operations 15

Across 14 paths, the API surfaces 15 operations — 3 GET, 12 POST. Each is listed below with its method, path, parameters, and response codes.

Files 15

A file stores a sequence of bytes connected to one or more assets. For example, a file can contain a piping and instrumentation diagram (P&IDs) showing how multiple assets are con…

POST
/files
Upload file
initFileUpload 2 params body → 201400
GET
/files
List files
listFiles 24 params → 200400
POST
/files/initmultipartupload
Upload multipart file
initMultiPartUpload 2 params body → 201400
POST
/files/uploadlink
Get upload file link
getUploadLink 1 param body → 201400
POST
/files/multiuploadlink
Get multipart file upload link
getMultiPartUploadLink 1 param body → 201400
GET
/files/{id}
Retrieve a file by its ID
getFileByInternalId 1 param → 200400
POST
/files/list
Filter files
advancedListFiles body → 200400
POST
/files/byids
Retrieve files
byIdsFiles body → 200400
POST
/files/search
Search files
searchFiles body → 200400
POST
/files/delete
Delete files
deleteFiles body → 200400
POST
/files/downloadlink
Download files
downloadLinks 1 param body → 200400
GET
/files/icon
Get icon
getIcon 4 params → 200400
POST
/files/update
Update files
updateFiles body → 200400
POST
/files/aggregate
Aggregate files
aggregateFiles body → 200400
POST
/files/completemultipartupload
Complete multipart upload
completeMultiPartUpload body → 200400

Schemas 104

The contract defines 104 schemas that model the data the API accepts and returns. The most detailed are ExternalFilesMetadata (13 properties), Error (4 properties), GeoLocation (3 properties), DataWithCursor (2 properties). Each schema is shown below with its type and property counts.

Label
object
A label assigned to a resource.
1 property 1 required
DataSetIdEither
MultiLineString
object
2 properties 2 required
FileExternalId
object
1 property
JsonArrayInt64
string
PointCoordinates
array
Coordinates of a point in 2D space, described as an array of 2 numbers. Example: [4.306640625, 60.205710352530346]
CogniteInternalId
integer
A server-generated ID for the object.
FilesMetadata
InstanceSpace
string
FileName
string
Name of the file.
FileExternalIdEither
FileSelectByInstanceId
object
1 property
CompleteMultiPartUpload
Point
object
2 properties 2 required
LabelsPatch
Updates the resource's assigned labels. Labels can be added, removed or replaced (set). Adding an already attached label is an idempotent operation. Removing a…
MultiPolygonCoordinates
array
List of multiple polygons. Each polygon is defined as a list of one or more linear rings representing a shape. A linear ring is the boundary of a surface or th…
MultiPartUploadFileMetadata
GeoLocationGeometry
object
Represents the points, curves and surfaces in the coordinate space.
1 required
DMSFileChange
object
Changes will be applied to file.
1 property 1 required
FileFilter
object
Filter on files with exact match
1 property
GeoLocationFilter
object
Only include files matching the specified geographic relation.
2 properties 2 required
FileIdEither
SetLongField
object
1 property 1 required
AssetExternalIds
array
Only include files that reference these specific asset external IDs.
ArrayPatchLongAddOrRemove
object
2 properties
AssetIdEither
FilesMetadataField
object
Custom, application specific metadata. String key - String value. Limits: Maximum length of key is 128 bytes, value 10240 bytes, up to 256 key-value pairs, of…
FileSelectByExternalId
object
1 property
AssetExternalId
object
1 property 1 required
PartitionLimited10
string
Splits the data set into N partitions. The attribute is specified as a "M/N" string, where M is a natural number in the interval of [1, N]. You need to follow…
DataMultiPartUploadFileMetadata
object
1 property
FileChangeUpdateByInstanceId
EpochTimestamp
integer
The number of milliseconds since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC), minus leap seconds.
DataSetIdEithers
array
MultiPoint
object
2 properties 2 required
FileLink
object
1 property
Polygon
object
2 properties 2 required
ObjectPatchAddRemove
object
2 properties
AssetIds
array
Only include files that reference these specific asset IDs.
FileChangeUpdateById
SinglePatchLong
object
Set a new value for the long, or remove the value.
FileDeleteByIds
object
CogniteExternalId
string
The external ID provided by the client. Must be unique for the resource type.
UploadFileMetadata
DataSetId
integer
The dataSet Id for the item.
ExternalFilesMetadata
object
13 properties 1 required
ObjectPatchSet
object
1 property 1 required
SinglePatchGeoLocation
object
Set a new value for the geoLocation, or remove the value.
CogniteExternalIdPrefix
string
Filter by this (case-sensitive) prefix for the external ID.
LabelList
array
A list of the labels associated with this resource item.
SetGeoLocation
object
1 property 1 required
FileInternalId
object
1 property
IgnoreUnknownIdsField
object
1 property
MultiPointCoordinates
array
List of Points. Each Point is defined as an array of 2 numbers, representing coordinates of a point in 2D space. Example: [[35, 10], [45, 45]]
DataWithCursor
object
A list of objects along with possible cursors to get the next page of results
2 properties
DataSetExternalId
object
1 property 1 required
LabelContainsAllFilter
object
1 property 1 required
FileChangeUpdateByExternalId
Cursor
object
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…
1 property
DataFileMetadata
object
1 property
JsonArrayString
string
LabelFilter
Return only the resource matching the specified label constraints.
PolygonCoordinates
array
List of one or more linear rings representing a shape. A linear ring is the boundary of a surface or the boundary of a hole in a surface. It is defined as a li…
RemoveField
object
1 property 1 required
FileDataIdsWithIgnoreUnknownIds
object
DataSetInternalId
object
1 property 1 required
FileDataUploadIds
object
1 property 1 required
FilesSearchFilter
Filter on files with exact match
DataFileChange
object
1 property 1 required
InstanceId
object
2 properties 2 required
ArrayPatchLong
object
Change that will be applied to the array.
ObjectPatch
object
Custom, application specific metadata. String key - String value.
AssetSubtreeIds
array
Only include files that have a related asset in a subtree rooted at any of these assetIds (including the roots given). If the total size of the given subtrees…
FileInstanceId
object
1 property 1 required
LabelsAddRemove
object
2 properties
LabelsSet
object
1 property
LineStringCoordinates
array
Coordinates of a line described by a list of two or more points. Each point is defined as a pair of two numbers in an array, representing coordinates of a poin…
FileLimit
object
1 property
ArrayPatchLongSet
object
1 property 1 required
FilesAggregate
object
Aggregation results for files
1 property 1 required
FileChange
object
Changes will be applied to file.
1 property 1 required
SinglePatchString
object
Set a new value for the string, or remove the value.
FileFilterRequest
FileSource
string
The source of the file.
RootAssetIds
array
Only include files that have a related asset in a tree rooted at any of these root assetIds.
MultiLineStringCoordinates
array
List of lines where each line (LineString) is defined as a list of two or more points. Each point is defined as a pair of two numbers in an array, representing…
FileSelectEither
FileChangeUpdate
LineString
object
2 properties 2 required
SetStringField
object
1 property 1 required
GeoLocation
object
Geographic metadata.
3 properties 2 required
FileDirectory
string
Directory containing the file. Must be an absolute, unix-style path.
FileSelectById
object
1 property
MultiPolygon
object
2 properties 2 required
LabelContainsAnyFilter
object
1 property 1 required
AssetInternalId
object
1 property 1 required
InstanceExternalId
string
DataFilesAggregate
object
1 property 1 required
MimeType
string
File type. E.g. text/plain, application/pdf, ..
Error
object
Cognite API error.
4 properties 2 required
FileLinkIds
object
1 property 1 required
EpochTimestampRange
object
Range between two timestamps (inclusive).
2 properties
FileDeleteByIdEither
PartitionObjectLimited10
object
1 property

Specification

The full machine-readable OpenAPI contract behind this narrative.

Source

cognite-files-api-openapi.yml Raw ↑

Other APIs Cognite publishes across the network.

Cognite Data Fusion API
Cognite 3D Asset Mapping API
Cognite 3D Files API
Cognite 3D Jobs API
Cognite 3D Model Revisions API
Cognite 3D Models API
Cognite Annotations API
Cognite Assets API
Cognite Connections API
Cognite Containers API
Cognite Data models API
Cognite Data point subscriptions API
Where this information came from

This is an independent, third-party profile of Cognite Files API, published by API Evangelist. We do not operate, host, resell, or support these APIs, and we are not affiliated with or endorsed by the company unless stated above. Everything here is built from publicly available information — the company's own site, developer portal, documentation, public repositories, and the specifications it publishes for public use. Nothing is obtained by breaching a system, defeating an access control, or using credentials.

The Kin Score and Agent Readiness rating are independently calculated assessments of a company's public API artifacts, scored against a published rubric. They are not certifications, endorsements, security assessments, or audits.

Corrections, re-scores, and removal are free — no partnership or purchase required, and you do not need to justify the request. A removed company is recorded as unrated, never scored zero for having asked. Acknowledgement within one business day; removal within two.

info@apievangelist.com · Read the full data-sourcing policy →
On a security or compliance team? Put security in the subject line and you will get a person, not a form — we will tell you exactly which public URLs this profile was built from.