Available on crate feature helix only.
Expand description

Helix endpoints regarding clips

Examples

let client = HelixClient::new();
let req = GetClipsRequest::builder()
    .game_id(Some("1234".into()))
    .first(100) // max 100, 20 if left unspecified
    .build();

println!("{:?}", &client.req_get(req, &token).await?.data.get(0));

Modules

Gets clip information by clip ID (one or more), broadcaster ID (one only), or game ID (one only). get-clips

Structs

Return Values for Get Clips

Query Parameters for Get Clips