Skip to main content
POST
/
collection
/
{collection_id}
/
search
/
title
Search by title within collection
curl --request POST \
  --url https://api.videodb.io/collection/{collection_id}/search/title/ \
  --header 'Content-Type: application/json' \
  --header 'x-access-token: <api-key>' \
  --data '
{
  "query": "search query",
  "search_type": "llm"
}
'
{
  "success": true,
  "data": [
    {}
  ]
}
Search for media files by title within a specific collection.
  • Searches across video, audio, and image titles in the collection
  • Use this for quick metadata-based lookups without requiring an index

Authorizations

x-access-token
string
header
required

API key for authentication (sk-xxx format)

Path Parameters

collection_id
string
required
Example:

"default"

Body

application/json
query
string
required
Example:

"search query"

search_type
string
default:llm
Example:

"llm"

Response

200 - application/json

Title search results

success
boolean
Example:

true

data
object[]