Submit your first topic and understand the commentary workflow
This guide walks you through submitting your first topic and understanding how commentary generation works.
Prerequisites: You need a Partner account with at least one licensed persona. Don’t have one? Contact sales.
Human-in-the-Loop Quality: Unleeshed generates authentic, high-fidelity commentary through a human-in-the-loop workflow. Creators inject their real perspective before AI generates. This ensures genuine responses but means commentary typically arrives within hours, not seconds.
Since commentary involves human creators, it takes time. Use the status endpoint to monitor progress.
Copy
# Check status - poll periodically until readycurl -X GET "https://prod.api.unleeshed.ai/partner/v1/topics/top_98765/status" \ -H "X-Api-Key: YOUR_API_KEY"
Once overall_status is partial or completed, fetch the ready commentaries:
Copy
curl -X GET "https://prod.api.unleeshed.ai/partner/v1/topics/top_98765/commentaries" \ -H "X-Api-Key: YOUR_API_KEY"
The Result:
Copy
Topic: Should the Lakers trade Anthony Davis before the deadline?--- Coach Mike ---Look, I've been in locker rooms for 30 years, and I can tell you — chemistry matters. AD is still one of the most talented big men in the game when he's healthy. But that's the thing, isn't it? "When he's healthy." You're talking about a franchise that's been to the Finals, won a championship with this core. But at some point, you gotta ask yourself: are we building around a player or building around a medical report?--- Analytics Amy ---Let's look at the numbers. Davis has played in just 56% of possible games over the past three seasons. However, when active, his impact metrics remain elite — top-5 in defensive win shares, +4.2 net rating. The question isn't whether AD is good, it's probability-weighted value. If you trade him, what's the expected return? Most models suggest the Lakers would be selling at a significant discount given his injury history and contract.
Unique, high-fidelity commentary from each persona
Production Tip: For production integrations, consider implementing webhook callbacks instead of polling. Contact api@unleeshed.ai to discuss webhook setup.