cURL
curl --request POST \ --url https://api.liquidindex.dev/query/customer \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "customer_id": "<string>", "query": "<string>", "top_k": 5, "include_llm": true }'
{ "results": { "chunks": [ { "score": 123, "content": "<string>", "metadata": { "id": "<string>", "file": "<string>", "source": "<string>", "type": "<string>" } } ], "llm": "<string>" }, "usage": { "read_units": 123, "embedding_units": 123 } }
Returns semantically similar content based on the input query
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful query response
The response is of type object.
object