Unlock powerful video indexing and search capabilities with Aana.
Analyze your video to extract episodic and video-level summaries, and generate a transcript.
curl https://v1.api.aana.ai/analyze \
--request POST \
--header 'x-api-key: YOUR_API_KEY_HERE' \
--data 'body={"video":{"url":"https://example.com/video_12345.mp4", "media_id": "12345"}}'
Index you videos to make them searchable with Aana API.
curl https://v1.api.aana.ai/index \
--request POST \
--header 'x-api-key: YOUR_API_KEY_HERE' \
--data 'body={"video":{"url":"https://example.com/video_12345.mp4", "media_id": "12345"}, "collection": "main"}'
Search your indexed videos using semantic search.
curl https://v1.api.aana.ai/search \
--request POST \
--header 'x-api-key: YOUR_API_KEY_HERE' \
--data 'body={"query": "cat", "collection": "main"}'