Skip to main content
POST
/
api
/
v1
/
runtime
/
v1
/
vectors
/
search
Vector Search
curl --request POST \
  --url https://api.runflow.ai/api/v1/runtime/v1/vectors/search \
  --header 'Content-Type: application/json' \
  --data '
{
  "query": "<string>",
  "vectorStore": "<string>",
  "k": 123,
  "threshold": 123,
  "filters": {}
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.runflow.ai/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
query
string
required

Search query

vectorStore
string

Vector store name

k
number

Number of results

threshold
number

Similarity threshold

filters
object

Search filters

Response

Search results: { results: [{ content, score, metadata }, ...] }. Empty array if the named store is missing.