Try our API.
Normal Search
Deep Search
Get your API keys from the dashboard page:
Execute standard search queries across your video index to find relevant moments based on visual and conversational cues.
PYTHON
NODE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from crowdcore import CrowdCore
client = CrowdCore(api_key="<YOUR_API_KEY>")
search_results = client.search.query(
index_id="<YOUR_INDEX_ID>",
query="A man interacting with a dog",
options=["visual", "conversation"]
)
for group in search_results.data:
print(f"Score: {group.score}")
print(f"Time: {group.start} - {group.end}")