List video abuse report reasons
documentedRetrieve the list of reasons for reporting abusive videos.
GET /videoAbuseReportReasonsVideoAbuseReportReasonsno 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)
The following uses the official YouTube Data API v3 endpoint for listing video abuse report reasons. Base URL: https://www.googleapis.com/youtube/v3/; Endpoint: videoAbuseReportReasons.list with part=snippet. Authentication can be via OAuth 2.0 token or API key. See docs for videoAbuseReportReasons and auth requirements. ([developers.google.com](https://developers.google.com/youtube/v3/docs/videoAbuseReportReasons))
npx -y keychains@latest curl "https://www.googleapis.com/youtube/v3/videoAbuseReportReasons?part=snippet" \
-X GET \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Accept: application/json"