Skip to main content
GET
/
3d
/
models
/
{modelId}
JavaScript SDK
await client.models3D.retrieve(3744350296805509);
{
  "name": "My Model",
  "id": 1000,
  "createdTime": 0,
  "dataSetId": 4503599627370496,
  "space": "<string>",
  "metadata": {}
}

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.

Response

A model object

name
string
required

The name of the model.

Example:

"My Model"

id
integer<int64>
required

The ID of the model.

Example:

1000

createdTime
integer<int64>
required

The creation time of the resource, in milliseconds since January 1, 1970 at 00:00 UTC.

Example:

0

dataSetId
integer<int64>

The dataSet Id for the item.

Required range: 1 <= x <= 9007199254740991
space
string
Required string length: 1 - 43
Pattern: ^[a-zA-Z][a-zA-Z0-9_-]{0,41}[a-zA-Z0-9]?$
metadata
object

Custom, application specific metadata. String key -> String value. Limits: Maximum length of key is 32 bytes, value 512 bytes, up to 16 key-value pairs.

Last modified on April 23, 2026