Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Response
Successfully retrieved search results
curl --request POST \
--url https://api.anam.ai/v1/knowledge/groups/{id}/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"query": "<string>",
"limit": 5
}'Search for similar content in a RAG group using vector similarity
curl --request POST \
--url https://api.anam.ai/v1/knowledge/groups/{id}/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"query": "<string>",
"limit": 5
}'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successfully retrieved search results
Was this page helpful?