Skip to main content
POST
/
collection
/
{collection_id}
/
search
/
web
Web search within collection
curl --request POST \
  --url https://api.videodb.io/collection/{collection_id}/search/web/ \
  --header 'Content-Type: application/json' \
  --header 'x-access-token: <api-key>' \
  --data '
{
  "query": "search query"
}
'
{
  "success": true,
  "data": {}
}
Perform a web-style search within a specific collection.
  • Performs web-style search across collection media
  • Returns relevant results based on the search query

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"

Response

200 - application/json

Web search results

success
boolean
Example:

true

data
object