Create async embeddings

The Embed.V2.Tasks interface provides methods to create embeddings asynchronously for audio, video, images, and documents.

Creating embeddings asynchronously requires three steps:

  1. Create a task using the create method. The platform returns a task ID.
  2. Poll for the status of the task using the retrieve method. Wait until the status is ready.
  3. Retrieve the embeddings from the response when the status is ready using the retrieve method.

Methods

List embedding tasks

Description: This method returns a list of the async embedding tasks in your account. The platform returns your async embedding tasks sorted by creation date, with the newest at the top of the list.

Notes
  • Embeddings are stored for seven days.
  • When you invoke this method without specifying the started_at and ended_at parameters, the platform returns all the async embedding tasks created within the last seven days.

Function signature and example:

1list(
2 request?: TwelvelabsApi.embed.v2.TasksListRequest,
3 requestOptions?: Tasks.RequestOptions
4): Promise<core.Page<TwelvelabsApi.MediaEmbeddingTask>>

Parameters

NameTypeRequiredDescription
requestTwelvelabsApi.embed.v2.TasksListRequestNoParameters for listing embedding tasks.
requestOptionsTasks.RequestOptionsNoRequest-specific configuration.

The TwelvelabsApi.embed.v2.TasksListRequest interface contains the following properties:

NameTypeRequiredDescription
startedAtstringNoRetrieve the embedding tasks that were created after the given date and time, expressed in the RFC 3339 format (“YYYY-MM-DDTHH:mm:ssZ”).
endedAtstringNoRetrieve the embedding tasks that were created before the given date and time, expressed in the RFC 3339 format (“YYYY-MM-DDTHH:mm:ssZ”).
statusstringNoFilter the embedding tasks by their current status. Values: processing, ready, or failed.
pagenumberNoA number that identifies the page to retrieve. Default: 1.
pageLimitnumberNoThe number of items to return on each page. Default: 10. Max: 50.

Return value

Returns a Promise that resolves to a Page<TwelvelabsApi.MediaEmbeddingTask> object that allows you to iterate through the paginated task results.

The Page<T> class contains the following properties and methods:

NameTypeDescription
dataT[]An array containing the current page of items.
hasNextPage()booleanReturns whether there is a next page to load.
getNextPage()Promise<Page<T>>Retrieves the next page and returns the updated Page object.
Symbol.asyncIteratorAsyncIterator<T>Allows iteration through all items across all pages using for await loops.

The TwelvelabsApi.MediaEmbeddingTask interface contains the following properties:

NameTypeDescription
idstringThe unique identifier of the embedding task.
modelNamestringThe name of the video understanding model the platform used to create the embedding.
statusstringA string indicating the status of the embedding task. It can take one of the following values: processing, ready or failed.
createdAtDateThe date and time when the task was created.
updatedAtDateThe date and time when the task was last updated.
videoEmbeddingTwelvelabsApi.MediaEmbeddingTaskVideoEmbeddingAn object containing the metadata associated with the embedding. See VideoEmbeddingMetadata for details.
audioEmbeddingTwelvelabsApi.MediaEmbeddingTaskAudioEmbeddingAn object containing the metadata associated with the embedding. See AudioEmbeddingMetadata for details.
documentEmbeddingTwelvelabsApi.MediaEmbeddingTaskDocumentEmbeddingAn object containing the metadata associated with the embedding. Present only for document tasks created with Marengo 3.5. See DocumentEmbeddingMetadata for details.
imageEmbeddingTwelvelabsApi.MediaEmbeddingTaskImageEmbeddingAn object containing the metadata associated with the embedding. Present only for image tasks created with Marengo 3.5. See ImageEmbeddingMetadata for details.

Each of the four objects above wraps a single metadata field. All four metadata interfaces extend TwelvelabsApi.BaseEmbeddingMetadata, which contributes the following properties:

NameTypeDescription
inputUrlOptional<string>The URL of the media file used to generate the embedding. Present if a URL was provided in the request.
inputFilenameOptional<string>The name of the media file used to generate the embedding. Present if a file was provided in the request.

VideoEmbeddingMetadata

The TwelvelabsApi.VideoEmbeddingMetadata interface contains the metadata associated with the embedding.

NameTypeDescription
videoClipLengthOptional<number>The duration for each clip in seconds, as specified in the request. Note that the platform automatically truncates video segments shorter than 2 seconds. For a 31-second video divided into 6-second segments, the final 1-second segment will be truncated. This truncation only applies to the last segment if it does not meet the minimum length requirement of 2 seconds.
videoEmbeddingScopeOptional<string[]>The scope you’ve specified in the request.
videoEmbeddingOptionOptional<string[]>The embeddingOption values used to generate the embedding.
durationOptional<number>The total duration of the video in seconds.

AudioEmbeddingMetadata

The TwelvelabsApi.AudioEmbeddingMetadata interface contains the metadata associated with the embedding.

NameTypeDescription
audioEmbeddingOptionOptional<string[]>The type of the embedding. It can take one of the following values: ["audio"] or ["transcription"].
audioEmbeddingScopeOptional<string[]>The scope you’ve specified in the request.
durationOptional<number>The total duration of the audio in seconds.
startOffsetSecOptional<number>The start offset in seconds from the beginning of the audio where processing should begin.
endOffsetSecOptional<number>The end offset in seconds from the beginning of the audio where processing should end.

DocumentEmbeddingMetadata

The TwelvelabsApi.DocumentEmbeddingMetadata interface contains the metadata associated with the embedding. Only Marengo 3.5 returns this object.

NameTypeDescription
documentEmbeddingOptionOptional<string[]>The embeddingOption values used to generate the embedding.
documentEmbeddingScopeOptional<string[]>The embeddingScope values used to generate the embedding.

ImageEmbeddingMetadata

The TwelvelabsApi.ImageEmbeddingMetadata interface contains the metadata associated with the embedding. Only Marengo 3.5 returns this object.

NameTypeDescription
imageEmbeddingOptionOptional<string[]>The embeddingOption values used to generate the embedding. Always ["visual"].
imageEmbeddingScopeOptional<string[]>The embeddingScope values used to generate the embedding. Always ["asset"].

API Reference

List async embedding tasks

Create an async embedding task

Description: This method creates embeddings for audio, video, images, and documents asynchronously.

Use this method to embed content at scale, such as long files or the media files you want to make searchable. For a query, or for results you need in the same request, use the Create embeddings interface instead.

The content this method accepts depends on the model. Both models embed audio and video. Marengo 3.5 also embeds images and PDF files. For the formats, resolutions, file sizes, and duration limits each model accepts, see the input requirements for Marengo 3.5 or Marengo 3.0.

Notes
  • Creating a task validates only basic metadata and playability, not the full file. A file can pass this check but still fail later during embedding. When you retrieve the results, check the status field. If it is failed, the error.message field contains the reason.
  • This method is rate-limited. With Marengo 3.5, the platform counts input tokens for each type of content. A task can exceed a limit before you see an error. For details, see Input token limits for embedding.
  • Embeddings are stored for seven days.

Function signature and example:

1create(
2 request: TwelvelabsApi.embed.v2.CreateAsyncEmbeddingRequest,
3 requestOptions?: Tasks.RequestOptions
4): core.HttpResponsePromise<TwelvelabsApi.embed.v2.TasksCreateResponse>

Parameters

NameTypeRequiredDescription
requestTwelvelabsApi.embed.v2.CreateAsyncEmbeddingRequestYesParameters for creating an async embedding task.
requestOptionsTasks.RequestOptionsNoRequest-specific configuration.

The TwelvelabsApi.embed.v2.CreateAsyncEmbeddingRequest interface contains the following properties:

NameTypeRequiredDescription
inputTypeTwelvelabsApi.embed.v2.CreateAsyncEmbeddingRequestInputTypeYesThe type of content for the embeddings. Values:
- audio: An audio file.
- video: A video file.
- document: A PDF file. Requires Marengo 3.5.
- image: An image file. Requires Marengo 3.5.
modelNameTwelvelabsApi.embed.v2.CreateAsyncEmbeddingRequestModelNameYesThe embedding model to use. Values:
- marengo3.5: For details about this version, see the Marengo 3.5 page.
- marengo3.0: For details about this version, see the Marengo 3.0 page.
audioTwelvelabsApi.AsyncAudioInputRequestNoAudio input configuration. Required when inputType is audio. See AsyncAudioInputRequest for details.
videoTwelvelabsApi.AsyncVideoInputRequestNoVideo input configuration. Required when inputType is video. See AsyncVideoInputRequest for details.
documentTwelvelabsApi.AsyncDocumentInputRequestNoDocument input configuration. Required when inputType is document. See AsyncDocumentInputRequest for details. Requires Marengo 3.5.
imageTwelvelabsApi.AsyncImageInputRequestNoImage input configuration. Required when inputType is image. See AsyncImageInputRequest for details. Requires Marengo 3.5.
embeddingUncertaintybooleanNoSet this parameter to true to receive a data[].embeddingUncertainty field in the response, representing a per-dimension uncertainty vector with the same length as the embedding array. A higher value shows lower confidence in that dimension. Requires Marengo 3.5. To use this parameter with audio or video input, exclude the asset scope from the embeddingScope field. For example, set video.embeddingScope to ["clip"]. The field defaults to ["clip", "asset"], so a request that keeps the default returns a 400 error. This restriction does not apply to document and image input.

AsyncAudioInputRequest

The TwelvelabsApi.AsyncAudioInputRequest interface specifies the configuration for processing audio content. Required when inputType is audio.

NameTypeRequiredDescription
mediaSourceTwelvelabsApi.MediaSourceYesSpecifies the source of the audio file. See MediaSource for details.
startSecnumberNoThe start time in seconds for processing the audio file.
Use this parameter to process a portion of the audio file starting from a specific time.
Default: 0 (start from the beginning).
endSecnumberNoThe end time in seconds for processing the audio file.
Use this parameter to process a portion of the audio file ending at a specific time. The end time must be greater than the start time.
Default: End of the audio file
segmentationTwelvelabsApi.AsyncAudioInputRequestSegmentationNoSpecifies how the platform divides the audio into segments.
The structure of this object depends on the model version:
- With Marengo 3.5: Place your settings in the temporal object. Both strategies are available: dynamic divides the audio into variable-length segments that follow scene changes, and fixed divides it into equal-length segments. Default: temporal.dynamic, minDurationSec: 2.
- With Marengo 3.0: Provide the settings directly in this object. Only fixed segmentation is available. Default: fixed, durationSec: 6.
Using a structure that does not match your model version returns a 400 error.
See AudioSegmentation and AsyncTemporalSegmentation for details.
embeddingOptionTwelvelabsApi.AsyncAudioInputRequestEmbeddingOptionItem[]NoThe types of embeddings you wish to generate.
Values:
- audio: Generates embeddings based on audio content (sounds, music, effects). With Marengo 3.5, this value includes speech, music, and non-dialog audio.
- transcription: Generates embeddings based on transcribed speech. Requires Marengo 3.0.
You can specify multiple values to generate different types of embeddings for the same audio.
Default: ["audio", "transcription"] for Marengo 3.0; ["audio"] for Marengo 3.5.
embeddingScopeTwelvelabsApi.AsyncAudioInputRequestEmbeddingScopeItem[]NoThe scope for which you wish to generate embeddings.
Values:
- clip: Generates one embedding for each segment. Works with both Marengo 3.0 and Marengo 3.5.
- local: Generates one embedding for each segment. Equivalent to clip when using Marengo 3.5.
- asset: Generates one embedding for the entire audio file
You can specify multiple scopes to generate embeddings at different levels.
Default: ["clip", "asset"]
embeddingTypeTwelvelabsApi.AsyncAudioInputRequestEmbeddingTypeItem[]NoSpecifies how to structure the embedding. Include this parameter only when the embeddingOption parameter contains at least two values.
Values:
- separate_embedding: Returns separate embeddings for each modality specified in the embeddingOption parameter.
- fused_embedding: Returns a single combined embedding that integrates all modalities into one vector. With Marengo 3.5, this value requires the timeBasedMetadata field.
Specify both values to receive separate and fused embeddings in the same response.
Default: separate_embedding.
timeBasedMetadataTwelvelabsApi.TimeBasedMetadataEntry[]NoYour own time-aligned text, such as a stats feed or scene descriptions. The platform folds each entry into the fused embedding of the segments it overlaps in time, and it affects only that embedding. Requires the fused_embedding value in the embeddingType field. This field is supported only with Marengo 3.5. See TimeBasedMetadataEntry for details.

AsyncVideoInputRequest

The TwelvelabsApi.AsyncVideoInputRequest interface specifies the configuration for processing video content. Required when inputType is video.

NameTypeRequiredDescription
mediaSourceTwelvelabsApi.MediaSourceYesSpecifies the source of the video file. See MediaSource for details.
startSecnumberNoThe start time in seconds for processing the video file.
Use this parameter to process a portion of the video file starting from a specific time.
Default: 0 (start from the beginning)
endSecnumberNoThe end time in seconds for processing the video file.
Use this parameter to process a portion of the video file ending at a specific time. The end time must be greater than the start time.
Default: End of the video file
segmentationTwelvelabsApi.AsyncVideoInputRequestSegmentationNoSpecifies how the platform divides the video into segments.
The structure of this object depends on the model version:
- With Marengo 3.5: Place your settings in the temporal object. Both strategies are available: dynamic divides the video into variable-length segments that follow scene changes, and fixed divides it into equal-length segments. Default: temporal.dynamic, minDurationSec: 2.
- With Marengo 3.0: Provide the settings directly in this object. Default: dynamic, minDurationSec: 4.
Using a structure that does not match your model version returns a 400 error.
See VideoSegmentation and AsyncTemporalSegmentation for details.
embeddingOptionTwelvelabsApi.AsyncVideoInputRequestEmbeddingOptionItem[]NoThe types of embeddings to generate for the video.
Values:
- visual: Generates embeddings based on visual content (scenes, objects, actions)
- audio: Generates embeddings based on audio content (sounds, music, effects). With Marengo 3.5, this value includes speech, music, and non-dialog audio.
- transcription: Generates embeddings based on transcribed speech. Requires Marengo 3.0.
You can specify multiple values to generate different types of embeddings for the same video.
Default: ["visual", "audio", "transcription"] for Marengo 3.0; ["visual", "audio"] for Marengo 3.5.
embeddingScopeTwelvelabsApi.AsyncVideoInputRequestEmbeddingScopeItem[]NoThe scope for which you wish to generate embeddings.
Values:
- clip: Generates one embedding for each segment. Works with both Marengo 3.0 and Marengo 3.5.
- local: Generates one embedding for each segment. Equivalent to clip when using Marengo 3.5.
- asset: Generates one embedding for the entire video file. Use this scope for videos up to 10-30 seconds to maintain optimal performance.
You can specify multiple scopes to generate embeddings at different levels.
Default: ["clip", "asset"]
embeddingTypeTwelvelabsApi.AsyncVideoInputRequestEmbeddingTypeItem[]NoSpecifies how to structure the embedding. Include this parameter only when embeddingOption contains at least two values.
Values:
- separate_embedding: Returns separate embeddings per modality specified in the embeddingOption field
- fused_embedding: Returns a single embedding that combines all modalities into one vector. With Marengo 3.5, this value requires the timeBasedMetadata field.
Specify both values to receive separate and fused embeddings in the same response.
Default: separate_embedding.
timeBasedMetadataTwelvelabsApi.TimeBasedMetadataEntry[]NoYour own time-aligned text, such as a stats feed or scene descriptions, which you can generate by segmenting a video with Pegasus. The platform folds each entry into the fused embedding of the segments it overlaps in time, and it affects only that embedding. Requires the fused_embedding value in the embeddingType field. This field is supported only with Marengo 3.5. See TimeBasedMetadataEntry for details.

TimeBasedMetadataEntry

One time-aligned metadata entry. The platform folds the text of the entry into the fused embedding of every segment that overlaps the time range of the entry.

Used by the AsyncAudioInputRequest.timeBasedMetadata and AsyncVideoInputRequest.timeBasedMetadata fields. Not applicable to the AsyncDocumentInputRequest interface. Requires Marengo 3.5.

NameTypeRequiredDescription
startnumberYesThe start time of the entry in seconds, measured from the beginning of the asset. Set the same value in the end field for an event that happens at a single point in time, such as one entry in a stats feed.
endnumberYesThe end time of the entry in seconds, measured from the beginning of the asset.
textstringYesThe text to fold into the fused embedding of the overlapping segments.

AsyncDocumentInputRequest

The TwelvelabsApi.AsyncDocumentInputRequest interface specifies the configuration for processing documents. Requires Marengo 3.5.

The platform embeds the rendered pages of your PDF file with embeddingOption: ["visual"], one embedding per page.

NameTypeRequiredDescription
mediaSourceTwelvelabsApi.MediaSourceYesSpecifies the source of the document file. See MediaSource for details.
embeddingOptionTwelvelabsApi.AsyncDocumentInputRequestEmbeddingOptionItem[]NoThe type of content to embed.
Values:
- visual: Embeds the rendered pages. Valid for PDF files.
- text: Not supported. Returns a 400 error.
embeddingTypeTwelvelabsApi.AsyncDocumentInputRequestEmbeddingTypeItem[]NoSpecifies how to structure the embedding.
Values:
- separate_embedding: Returns one embedding per requested embeddingScope.
- fused_embedding: Returns a 400 error. Documents have a single modality.
Default: separate_embedding.
embeddingScopeTwelvelabsApi.AsyncDocumentInputRequestEmbeddingScopeItem[]NoThe scope for which you wish to generate embeddings.
Values:
- local: Returns one embedding per page. The only supported scope for PDF files, and the default.
- asset: Not supported for PDF files.

AsyncImageInputRequest

The TwelvelabsApi.AsyncImageInputRequest interface specifies the configuration for processing image content. Required when inputType is image. Requires Marengo 3.5. The image can be up to 32 MB before encoding, whichever of the three fields you use.

For an image, the embeddingOption, embeddingType, and embeddingScope fields each accept a single value; any other value returns a 400 error.

NameTypeRequiredDescription
mediaSourceTwelvelabsApi.MediaSourceYesSpecifies the source of the image file. See MediaSource for details.
embeddingOptionTwelvelabsApi.AsyncImageInputRequestEmbeddingOptionItem[]NoThe type of embedding to generate for the image. Always visual.
embeddingTypeTwelvelabsApi.AsyncImageInputRequestEmbeddingTypeItem[]NoSpecifies how to structure the embedding. Always separate_embedding.
embeddingScopeTwelvelabsApi.AsyncImageInputRequestEmbeddingScopeItem[]NoThe scope for which to generate embeddings. Always asset, which produces one embedding for the entire image.

MediaSource

The TwelvelabsApi.MediaSource interface specifies the source of the media file. Provide exactly one of the following:

NameTypeRequiredDescription
base64StringstringNoThe base64-encoded media data. The decoded file can be up to 36 MB; encoded, it can be up to 48 MB.
urlstringNoThe publicly accessible URL of the media file. Use direct links to raw media files. Video hosting platforms and cloud storage sharing links are not supported.
assetIdstringNoThe unique identifier of an asset from a direct or multipart upload. The asset status must be ready. Use assets.retrieve to check the status.

AudioSegmentation

The TwelvelabsApi.AudioSegmentation interface specifies how the platform divides the audio into segments using fixed-length intervals.

NameTypeRequiredDescription
strategyTwelvelabsApi.AudioSegmentationStrategyYesThe segmentation strategy. Value: fixed.
fixedTwelvelabsApi.AudioSegmentationFixedYesConfiguration for fixed segmentation.
This object is required when the strategy field is fixed. See AudioSegmentationFixed for details.

AudioSegmentationFixed

The TwelvelabsApi.AudioSegmentationFixed interface configures fixed-length segmentation for audio.

NameTypeRequiredDescription
durationSecnumberYesThe duration in seconds for each segment. The platform divides the audio into segments of this exact length. The final segment may be shorter if the audio duration is not evenly divisible.
Min: 2.
Max: 10.
Example: With duration_sec: 5, a 12-second audio file produces segments: [0-5s], [5-10s], [10-12s].

VideoSegmentation

The TwelvelabsApi.VideoSegmentation type specifies how the platform divides the video into segments. Use one of the following:

Fixed segmentation: Divides the video into equal-length segments:

NameTypeRequiredDescription
strategy"fixed"YesThe segmentation strategy. Value: fixed.
fixedTwelvelabsApi.VideoSegmentationFixedFixedYesConfiguration for fixed segmentation. See VideoSegmentationFixedFixed for details.

Dynamic segmentation: Divides the video into adaptive segments based on scene changes:

NameTypeRequiredDescription
strategy"dynamic"YesThe segmentation strategy. Value: dynamic.
dynamicTwelvelabsApi.VideoSegmentationDynamicDynamicYesConfiguration for dynamic segmentation. See VideoSegmentationDynamicDynamic for details.

VideoSegmentationFixedFixed

The TwelvelabsApi.VideoSegmentationFixedFixed interface configures fixed-length segmentation for video.

NameTypeRequiredDescription
durationSecnumberYesThe duration in seconds for each segment.
The platform divides the video into segments of this exact length. The final segment may be shorter if the video duration is not evenly divisible.
Min: 2.
Max: 10.
Example: With duration_sec: 5, a 12-second video produces segments: [0-5s], [5-10s], [10-12s].

VideoSegmentationDynamicDynamic

The TwelvelabsApi.VideoSegmentationDynamicDynamic interface configures dynamic segmentation for video based on scene changes.

NameTypeRequiredDescription
minDurationSecnumberYesThe minimum duration in seconds for each segment.
The platform divides the video into segments that are at least this long. Segments adapt to scene changes and content boundaries and may be longer than the minimum.
Min: 2.
Max: 5.
Example: With min_duration_sec: 3, segments might be: [0-3.2s], [3.2-7.8s], [7.8-12.1s]

AsyncTemporalSegmentation

The TwelvelabsApi.AsyncTemporalSegmentation interface wraps your settings in a temporal object. Use with Marengo 3.5.

NameTypeRequiredDescription
temporalTwelvelabsApi.TemporalSegmentationYesSpecifies how the platform divides the file into segments. See TemporalSegmentation for details.

TemporalSegmentation

The TwelvelabsApi.TemporalSegmentation type specifies how the platform divides the file into segments. The strategy field selects one variant:

Dynamic segmentation: Creates variable-length segments that align with scene or content boundaries. Use this for content-aware segmentation.

NameTypeRequiredDescription
strategy"dynamic"YesMust be dynamic. Identifies this as the content-aware segmentation variant.
dynamicTwelvelabsApi.TemporalSegmentationDynamicDynamicYesConfiguration for dynamic segmentation. This object is required when strategy is dynamic. See TemporalSegmentationDynamicDynamic for details.

Fixed segmentation: Creates equal-length segments. Use this for consistent timing.

NameTypeRequiredDescription
strategy"fixed"YesMust be fixed. Identifies this as the equal-length segmentation variant.
fixedTwelvelabsApi.TemporalSegmentationFixedFixedYesConfiguration for fixed segmentation. This object is required when strategy is fixed. See TemporalSegmentationFixedFixed for details.

TemporalSegmentationDynamicDynamic

The TwelvelabsApi.TemporalSegmentationDynamicDynamic interface configures dynamic segmentation. This object is required when strategy is dynamic.

NameTypeRequiredDescription
minDurationSecnumberYesThe minimum duration in seconds for each segment.
The platform divides the file into segments that are at least this long. Segments adapt to scene changes and content boundaries and may be longer than the minimum.
Min: 2.
Max: 5.

TemporalSegmentationFixedFixed

The TwelvelabsApi.TemporalSegmentationFixedFixed interface configures fixed segmentation. This object is required when strategy is fixed.

NameTypeRequiredDescription
durationSecnumberYesThe duration in seconds for each segment. The platform divides the file into segments of this exact length. The final segment may be shorter if the duration is not evenly divisible.
Min: 2.
Max: 10.

Return value

Returns an HttpResponsePromise that resolves to a TwelvelabsApi.embed.v2.TasksCreateResponse object containing the task details.

The TwelvelabsApi.embed.v2.TasksCreateResponse interface contains the following properties:

NameTypeDescription
idstringThe unique identifier of the embedding task.
statusTwelvelabsApi.embed.v2.TasksCreateResponseStatusThe initial status of the embedding task. Value: processing.
dataTwelvelabsApi.EmbeddingData[]Array of embedding results. Present when status is ready; null when status is processing or failed.

API Reference

Create an async embedding task

Retrieve task status and results

Description: This method retrieves the status and the results of an async embedding task.

Invoke this method repeatedly until the status field is ready or failed. When the status is ready, use the embeddings from the response. When the status is failed, the error.message field contains the reason.

Function signature and example:

1retrieve(
2 taskId: string,
3 requestOptions?: Tasks.RequestOptions
4): core.HttpResponsePromise<TwelvelabsApi.EmbeddingTaskResponse>

Parameters

NameTypeRequiredDescription
taskIdstringYesThe unique identifier of the embedding task.
requestOptionsTasks.RequestOptionsNoRequest-specific configuration.

Return value

Returns an HttpResponsePromise that resolves to a TwelvelabsApi.EmbeddingTaskResponse object containing the task status and results.

The TwelvelabsApi.EmbeddingTaskResponse interface contains the following properties:

NameTypeDescription
idstringThe unique identifier of the embedding task.
statusTwelvelabsApi.EmbeddingTaskResponseStatusThe current status of the task.
Values:
- processing: The platform is creating the embeddings
- ready: Processing is complete. Embeddings are available in the data field
- failed: The task failed. The data field is null, and the error.message field contains the reason
createdAtDateThe date and time when the task was created.
updatedAtDateThe date and time when the task was last updated.
dataTwelvelabsApi.EmbeddingData[]An object containing the embedding results, or null otherwise.
usageTwelvelabsApi.EmbeddingUsageToken counts for the request. Only Marengo 3.5 returns this field. See EmbeddingUsage for details.
metadataTwelvelabsApi.EmbeddingTaskMediaMetadataMetadata for the media input. See EmbeddingTaskMediaMetadata for details.
errorTwelvelabsApi.EmbeddingTaskResponseErrorAn object describing why the embedding task failed. Present only when status is failed. Omitted otherwise.

The TwelvelabsApi.EmbeddingData interface contains the following properties:

NameTypeDescription
embeddingnumber[]The embedding vector for the content.
embeddingUncertaintyOptional<number[]>A per-dimension uncertainty vector with the same length as the embedding array. A higher value shows lower confidence in that dimension. Present when the request sets embeddingUncertainty: true. Only Marengo 3.5 returns this field.
embeddingOptionOptional<TwelvelabsApi.EmbeddingDataEmbeddingOption>The modality used to generate this embedding.
Values:
- visual: Embedding based on visual content (a video, a page of a PDF file, or an image embedded asynchronously).
- audio: Embedding based on audio content.
- transcription: Embedding based on transcribed speech. Returned only for content embedded with Marengo 3.0.
- text: The platform does not return this value.
- fused: Embedding based on a combination of the modalities specified in the request. The platform returns this embedding only for video and audio input, and only when the embeddingType parameter includes the fused_embedding value.
- null: For text embeddings and images embedded synchronously.
embeddingScopeOptional<TwelvelabsApi.EmbeddingDataEmbeddingScope>The scope for which the embedding was generated.
Values:
- clip: Embedding for a segment. For video and audio input, one embedding per detected segment.
- page: Embedding for one page of a document. The platform returns this value only for PDF files embedded asynchronously.
- asset: Embedding for the entire file. For video and audio input, use this scope for content up to 10-30 seconds to maintain optimal performance.
- null: For text embeddings and images embedded synchronously.

When you request the local scope, the platform returns clip for audio and video, and page for PDF files. For audio, video, and document input, the metadata.embeddingScopes field contains the scopes you requested.
startSecOptional<number>The start time in seconds for this segment. This field is null for text and image embeddings.
endSecOptional<number>The end time in seconds for this segment. This field is null for text and image embeddings.
startPageNumberOptional<number>The first page this embedding covers, counting from 1. The platform returns this field only for page-level embeddings of a PDF file, and null in every other case.
endPageNumberOptional<number>The last page this embedding covers, counting from 1 and including that page. This field matches the startPageNumber field when the embedding covers a single page. The platform returns this field only for page-level embeddings of a PDF file, and null in every other case.

EmbeddingUsage

The TwelvelabsApi.EmbeddingUsage interface contains token counts for the request. Only Marengo 3.5 returns this object.

NameTypeDescription
inputTokensRecord<string, number>The number of tokens the request used. Each key names a type of content the request processed, and each value is the token count for that content.
truncatedbooleanWhether the input was truncated to fit within the token limit.

EmbeddingTaskMediaMetadata

The TwelvelabsApi.EmbeddingTaskMediaMetadata type provides metadata for the media input. The inputType field selects one variant:

Audio: Metadata for audio embeddings.

NameTypeDescription
inputType"audio"The type of the input content. Value: audio.
inputUrlOptional<string>The publicly accessible URL for the audio file.
inputFilenameOptional<string>The name of the audio file.
embeddingOptionsstring[]The embeddingOption values used to generate the embedding.
embeddingScopesTwelvelabsApi.EmbeddingAudioMetadataEmbeddingScopesItem[]The embeddingScope values used to generate the embedding.
durationnumberThe duration of the audio in seconds.
startOffsetSecOptional<number>The start offset in seconds.
endOffsetSecOptional<number>The end offset in seconds.

Video: Metadata for video embeddings.

NameTypeDescription
inputType"video"The type of the input content. Value: video.
inputUrlOptional<string>The publicly accessible URL for the video file.
inputFilenameOptional<string>The name of the video file.
clipLengthOptional<number>Length of each video clip in seconds. Only available for fixed segmentation.
embeddingScopesTwelvelabsApi.EmbeddingVideoMetadataEmbeddingScopesItem[]The embeddingScope values used to generate the embedding.
embeddingOptionsstring[]The embeddingOption values used to generate the embedding.
durationnumberThe duration of the video in seconds.
startOffsetSecOptional<number>The start offset in seconds.
endOffsetSecOptional<number>The end offset in seconds.

Document: Metadata for document embeddings. Only Marengo 3.5 returns this object.

NameTypeDescription
inputType"document"The type of the input content. Value: document.
inputUrlOptional<string>The publicly accessible URL for the document file.
inputFilenameOptional<string>The name of the document file.
embeddingOptionsOptional<string[]>The embeddingOption values used to generate the embedding.
embeddingScopesOptional<TwelvelabsApi.AsyncDocumentMetadataEmbeddingScopesItem[]>The embeddingScope values used to generate the embedding.

Image: Metadata for image embeddings. Only Marengo 3.5 returns this object.

NameTypeDescription
inputType"image"The type of the input content. Value: image.
inputUrlOptional<string>The publicly accessible URL for the image file.
inputFilenameOptional<string>The name of the image file.
embeddingOptionsOptional<string[]>The embeddingOption values used to generate the embedding. Always ["visual"].
embeddingScopesOptional<TwelvelabsApi.AsyncImageMetadataEmbeddingScopesItem[]>The embeddingScope values used to generate the embedding. Always ["asset"].

The TwelvelabsApi.EmbeddingTaskResponseError interface contains the following property:

NameTypeDescription
messagestringA human-readable message that describes why the task failed. Possible values:
- “The embedding service is temporarily unstable. Please try again later.”
- “The embedding task failed. Please try again later.”
- “We could not process your media for embedding. Please verify the input file and try again.” For the steps to fix the file, see the How do I fix a file that could not be processed for embedding? section on the Frequently asked questions page.

API Reference

Retrieve task status and results