Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.nomadicml.com/llms.txt

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

Retrieve a single thumbnail URL for a specific event in an analysis.
# Get thumbnail for the first event (index 0)
thumbnail_url = client.get_visual("video_id", "analysis_id", 0)

# Get thumbnail for the third event (index 2)
thumbnail_url = client.get_visual("video_id", "analysis_id", 2)
Parameters:
ParameterTypeDescription
video_idstrID of the video (required)
analysis_idstrID of the analysis containing events (required)
event_idxint0-based index of the event (required)
Returns: str - Single thumbnail URL Raises: ValueError if event index is out of range
For a step-by-step tutorial, head over to SDK Usage Examples.