Aana API

Unlock powerful video indexing and search capabilities with Aana.

Aana API empowers you to seamlessly analyze, index, and search video content.
Whether you're building a custom video search engine or integrating video intelligence into your app,
Aana provides robust tools to empower your workflow.

Analyze Your Video

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 Your Videos

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 Videos

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"}'