Skip to main content
POST
/
api
/
ml
/
v1
/
artifact-versions
/
signed-urls
Get signed URLs for artifact version
curl --request POST \
  --url https://{controlPlaneURL}/api/ml/v1/artifact-versions/signed-urls \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "<string>",
  "paths": [
    "<string>"
  ],
  "operation": "READ"
}
'
{
  "data": [
    {
      "path": "<string>",
      "signed_url": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
id
string
required

ID of the artifact version to get signed URLs for

paths
string[]
required

List of relative file paths within the artifact version to get signed URLs for

operation
enum<string>
required

Operation type for the signed URL (e.g., 'READ' or 'WRITE')

Available options:
READ,
WRITE

Response

List of signed URLs for the requested file paths

data
SignedURL · object[]
required

List of signed URLs for the requested file paths