Skip to main content
GET
/
3d
/
models
/
{modelId}
/
revisions
/
{revisionId}
/
outputs
List available outputs
curl --request GET \
  --url https://{cluster}.cognitedata.com/api/v1/projects/{project}/3d/models/{modelId}/revisions/{revisionId}/outputs \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "format": "ept-pointcloud",
      "version": 1,
      "blobId": 4503599627370496
    }
  ]
}

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

modelId
integer<int64>
required

Model ID.

revisionId
integer<int64>
required

Revision ID.

Query Parameters

format
string

Format identifier, e.g. 'ept-pointcloud' (point cloud). Well known formats are: 'ept-pointcloud' (point cloud data) or 'reveal-directory' (output supported by Reveal). 'all-outputs' can be used to retrieve all outputs for a 3D revision. Note that some of the outputs are internal, where the format and availability might change without warning.

Response

200 - application/json

Returns a list of outputs and available versions per output for the given revision.

items
object[]
required

A list of named and versioned outputs for the model. Note that the list is not sorted.

Last modified on April 23, 2026