Skip to main content
GET
/
marble
/
v1
/
operations
/
{operation_id}
Get Operation
curl --request GET \
  --url https://api.worldlabs.ai/marble/v1/operations/{operation_id} \
  --header 'WLT-Api-Key: <api-key>'
{
  "done": true,
  "operation_id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "error": {
    "code": 123,
    "message": "<string>"
  },
  "expires_at": "2023-11-07T05:31:56Z",
  "metadata": {},
  "response": {
    "display_name": "<string>",
    "world_id": "<string>",
    "world_marble_url": "<string>",
    "assets": {
      "caption": "<string>",
      "imagery": {
        "pano_url": "<string>"
      },
      "mesh": {
        "collider_mesh_url": "<string>"
      },
      "splats": {
        "spz_urls": {}
      },
      "thumbnail_url": "<string>"
    },
    "created_at": "2023-11-07T05:31:56Z",
    "model": "<string>",
    "permission": {
      "allowed_readers": [
        "<string>"
      ],
      "allowed_writers": [
        "<string>"
      ],
      "public": false
    },
    "tags": [
      "<string>"
    ],
    "updated_at": "2023-11-07T05:31:56Z",
    "world_prompt": {
      "text_prompt": "<string>",
      "type": "text"
    }
  },
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

WLT-Api-Key
string
header
required

API key for authentication. Get your key from the developer portal.

Path Parameters

operation_id
string
required

Response

Successful Response

done
boolean
required

True if the operation is completed

operation_id
string
required

Operation identifier

created_at
string<date-time> | null

Creation timestamp

error
OperationError · object

Error information if the operation failed

expires_at
string<date-time> | null

Expiration timestamp

metadata
Metadata · object

Service-specific metadata, such as progress percentage

response
World · object

Result payload when done=true and no error. Structure depends on operation type.

updated_at
string<date-time> | null

Last update timestamp