cURL
curl --request POST \ --url http://localhost:6699/api/v1/search/frame \ --header 'Content-Type: application/json' \ --header 'X-License-Key: <api-key>' \ --data ' { "media_path": "<string>", "time_seconds": 123, "cache_dir": "<string>", "query": "<string>", "media_paths": [ "<string>" ], "max_results": 50, "search_all": false } '
{ "matches": [ { "frame_index": 123, "timestamp": "<string>", "similarity": 123, "hash_str": "<string>", "video_path": "<string>" } ] }
Extracts a frame at the given timestamp from a video, then finds visually similar moments across all loaded media. Useful for “find more like this” features.
Jumper Pro license key passed via header
Video to extract the reference frame from
Timestamp in seconds for the reference frame
Optional text query to combine with the frame
Search results ordered by visual similarity
Show child attributes
Was this page helpful?