Locates specific information or segments within videos using natural language queries for precise content discovery.
The human-readable ID of the collection.
curl https://v1.api.aana.ai/search \
--request POST \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'x-api-key: YOUR_API_KEY_HERE' \
--data 'body={"query":"Cat","collection":"my_collection","search_public_collections":false,"retriever_type":"hybrid"}'
{ "results": [ { … } ] }
The human-readable ID of the collection.
curl https://v1.api.aana.ai/search_grid \
--request POST \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'x-api-key: YOUR_API_KEY_HERE' \
--data 'body={"query":"Cat","collection":"my_collection","search_public_collections":false,"search_language":"en"}'
{ "search_results": [ { … } ], "completion": "string" }
The human-readable ID of the collection.
curl https://v1.api.aana.ai/search_clusters \
--request POST \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'x-api-key: YOUR_API_KEY_HERE' \
--data 'body={"query":"Cat","collection":"my_collection","search_public_collections":false,"search_language":"en"}'
{ "answer": "string", "teaser_id": 0, "cluster_results": [ { … } ], "additional_info": "string", "related_queries": [ "string" ] }