POST
/
search
/
file
Search uploaded files
curl --request POST \
  --url https://api.vidnavigator.com/v1/search/file \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "query": "What did the customer say about pricing?"
}'
{
  "status": "success",
  "data": {
    "results": [
      {
        "id": "<string>",
        "name": "<string>",
        "duration": 123,
        "size": 123,
        "type": "<string>",
        "status": "completed",
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z",
        "original_file_date": "2023-11-07T05:31:56Z",
        "file_url": "<string>",
        "relevance_score": 123,
        "timestamp": 123,
        "relevant_text": "<string>",
        "query_answer": "<string>",
        "transcript_summary": "<string>",
        "people": [
          {
            "name": "<string>",
            "context": "<string>"
          }
        ],
        "places": [
          {
            "name": "<string>",
            "context": "<string>"
          }
        ],
        "key_subjects": [
          {
            "name": "<string>",
            "description": "<string>"
          }
        ]
      }
    ],
    "query": "<string>",
    "total_found": 123,
    "explanation": "<string>"
  }
}
Search your uploaded files using vector similarity and AI reranking.

Request Body

  • query (string, required): Search query

Example Request

cURL
curl -X POST "https://api.vidnavigator.com/v1/search/file" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "query": "Customer said about pricing"
  }'

Authorizations

X-API-Key
string
header
required

API key authentication. Include your VidNavigator API key in the X-API-Key header.

Body

application/json

Response

200
application/json

Search completed successfully

The response is of type object.