End Prediction
documentedEnds a prediction.
POST /helix/predictions/endPredictionsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
Note: The official Twitch Helix endpoint to end a prediction uses PATCH on /helix/predictions with query parameters (broadcaster_id, id, status). There is no POST /helix/predictions/end in the public API. See Twitch Docs. ([dev.twitch.tv](https://dev.twitch.tv/docs/api/predictions?utm_source=openai))
npx -y keychains@latest curl "https://api.twitch.tv/helix/predictions?broadcaster_id={{$broadcaster_id}}&id={{$prediction_id}}&status={{$status}}" \
-X PATCH \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Client-Id: {{TWITCH_CLIENT_ID}}" \
-H "Accept: application/json"