Skip to content

asset.metadata_extract

Operation: asset.metadata_extract
Category: asset

Look up metadata for an asset by ID

Type: Native (built-in)
Timeout: 300s
Retries: 3 (ExponentialWithJitter)

NameTypeRequiredDefaultDescription
asset_idStringYesAsset ID to look up
NameTypeDescription
asset_idStringAsset ID
content_typeStringMIME content type
size_bytesNumberSize in bytes
existsBooleanWhether the asset exists
import { WorkflowBuilder } from "@fabric-platform/sdk";
const workflow = new WorkflowBuilder("my-workflow")
.node("asset-metadata-extract", "tool", (n) =>
n.config({
operation: "asset.metadata_extract",
// ... node-specific config
})
)
.build();