Authorization: Bearer ********************curl --location '/vector_stores//search' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"query": "string",
"rewrite_query": false,
"max_num_results": 10,
"filters": {
"type": "eq",
"key": "string",
"value": "string"
},
"ranking_options": {
"ranker": "auto",
"score_threshold": 0
}
}'{
"object": "vector_store.search_results.page",
"search_query": [
"string"
],
"data": [
{
"file_id": "string",
"filename": "string",
"score": 0,
"attributes": {
"property1": "string",
"property2": "string"
},
"content": [
{
"type": "text",
"text": "string"
}
]
}
],
"has_more": true,
"next_page": "string"
}