Skip to main content
GET
/
images
/
{resourceType}
/
{imageName}
/
share
List image shares
curl --request GET \
  --url https://api.blaxel.ai/v0/images/{resourceType}/{imageName}/share \
  --header 'Authorization: Bearer <token>'
[
  {
    "accountId": "<string>",
    "status": "<string>",
    "workspace": "<string>",
    "accountOwnerEmail": "<string>",
    "pendingShareId": "<string>",
    "workspaceDisplayName": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.blaxel.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth2 authentication with JWT tokens

Path Parameters

resourceType
string
required

Resource type (agents, functions, sandboxes, jobs)

imageName
string
required

Name of the container image repository

Response

successful operation

accountId
string
required

ID of the account that owns the target workspace.

status
string
required

"active" when the share is applied in the target workspace, "pending" when it is awaiting accept on a cross-account share.

workspace
string
required

The workspace the image is shared with.

accountOwnerEmail
string

Email of the account owner for the target workspace (when available).

pendingShareId
string

ID of the pending share record when status is "pending".

workspaceDisplayName
string

Display name of the target workspace.

Last modified on May 13, 2026