Try our API.
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.
Build with CrowdCore API
The CrowdCore API empowers developers to integrate our massive database of influencer metrics and cutting-edge video understanding directly into their applications. Whether you are building an automated vetting tool, an agency dashboard, or a custom analytics platform, our RESTful endpoints provide high-throughput access to the data you need.
Semantic Video Search
Find specific moments inside videos using natural language queries (e.g., "creator unboxing a tech gadget").
Influencer Matching
Programmatically discover creators who match your target audience demographics and brand safety guidelines.
Getting Started
Authentication is handled via Bearer tokens. All API responses are formatted in JSON for easy parsing. We enforce rate limits to ensure stability, but higher limits are available for Enterprise partners. Check our full documentation for SDKs in Python, Node.js, and Go.
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}")