get_content_performance
Get performance metrics for a video across the Trillboards DOOH network.
WHEN TO USE:
Checking how a specific video performs across screens (plays, attention, audience size)
Analyzing which venue types and dayparts a video resonates best in
Finding the top-performing screens for a piece of content
Comparing content performance over different time windows
RETURNS:
videoId, title, totalPlays, uniqueScreens
avgAttention (0-1), avgAudienceSize, avgDwellMs
venueDistribution: Array of { venue_type, plays }
daypartDistribution: Array of { daypart, plays }
topScreens: Top 10 screens by play count with attention scores
period: { start, end } date range
EXAMPLE: User: "How is video dQw4w9WgXcQ performing on retail screens?" get_content_performance({ video_id: "dQw4w9WgXcQ", venue_type: "retail", days: 30 })
User: "Show me the last 7 days of performance for this video" get_content_performance({ video_id: "abc123xyz", days: 7 })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | Lookback window in days (default: 30, max: 90) | |
| video_id | Yes | YouTube video ID to query performance for | |
| venue_type | No | Optional venue type filter (e.g., "retail", "transit", "bar") |