Skip to main content
POST
/
search
/
transcript
Search transcriptions by text
curl --request POST \
  --url http://localhost:6699/api/v1/search/transcript \
  --header 'Content-Type: application/json' \
  --header 'X-License-Key: <api-key>' \
  --data '
{
  "query": "hello world",
  "cache_dir": "<string>",
  "max_results": 50,
  "media_paths": [
    "<string>"
  ],
  "search_all": true
}
'
{
  "matches": [
    {
      "media_path": "<string>",
      "hash_str": "<string>",
      "start_seconds": 123,
      "end_seconds": 123,
      "text": "<string>",
      "start_timestamp": "<string>",
      "end_timestamp": "<string>"
    }
  ]
}

Authorizations

X-License-Key
string
header
required

Jumper Pro license key passed via header

Body

application/json
query
string
required

Text to search for (case-insensitive substring match)

Example:

"hello world"

cache_dir
string
required
max_results
integer
default:50
media_paths
string[]

Restrict search to these files (ignored if search_all is true)

search_all
boolean
default:true

Search across all loaded transcriptions

Response

200 - application/json

Matching transcript segments

matches
object[]
Last modified on February 18, 2026