GET /runs/{id}/rounds#
GET https://app.promptpotter.dev/api/v1/runs/{id}/rounds
Stream rounds as Server-Sent Events. Each round emits one event with its candidates, scores and critique. The stream closes when the run finishes.
Query parameters
- sinceintegeroptional
- Replay from this round number. Omit to receive only new rounds.
Example
curl -N https://app.promptpotter.dev/api/v1/runs/run_8fK2a/rounds \
-H "Authorization: Bearer $PROMPTPOTTER_KEY"
event: round.completed
data: {"round":5,"best_score":0.82,"escalated":false}