SuperSonicHub1 Twitch Graphql Api Save

A documentation and schema scraping of Twitch's GraphQL API.

Project README

Twitch's GraphQL API

A documentation and schema scraping of Twitch's GraphQL API.

NOTE: Due to a certain man's wacky shenanigans, introspection of Twitch's GraphQL API has been disabled, and likely will continue to be disabled for forever. The endpoint, however, is still live, and the schema still usable.

Want a Twitch API that doesn't require a signup, has types and documentation, and makes use of one of the most powerful ways to write an API? Continue reading.

Endpoints

Two are One is currently available:

Pick your poison, I guess; I prefer the former.

Getting Your Client-ID

A Client-ID header is required to use the API, unless you're into errors:

{
    "error": "Bad Request",
    "status": 400,
    "message": "The \"Client-ID\" header is missing from the request."
}

Luckily, Twitch bakes a singular ID into their HTML for some reason: kimne78kx3ncx6brgo4mv6wki5h1ko. If you're afraid that it'll change someday and want a way to scrape it, run this RegEx pattern through their HTML:

/"Client-ID":"(.*)","Content-Type"/

Logging In

This is completely optional, but you can go through Twitch's OAuth handshake and get access to login-only features. See youtube-dl's Twitch extractor if you want an implemented example, as it's decently complex.

Getting the Schema

This repository comes with both GraphQL and JSON representations of the schema dated 3/14/2021, but if you need to download it yourself, e.g. this repository is dead, use get-graphql-schema:

npm install -g get-graphql-schema
# Now get it in GQL...
npx get-graphql-schema https://gql.twitch.tv/gql --header Client-Id=kimne78kx3ncx6brgo4mv6wki5h1ko > schema.graphql
# or JSON!
npx get-graphql-schema https://gql.twitch.tv/gql --header Client-Id=kimne78kx3ncx6brgo4mv6wki5h1ko -j > schema.json

BTW: If the schema on this repository is out-of-date, update it and the docs with pnpm run build and make a pull request.

Reading the Docs

Luckily, Twitch did all the hard work of documenting the API, we just have to make it easliy readable. This repository hosts generated documentation via GitHub Pages. However, if you want to generate and host it yourself, use graphqldoc:

npm install -g graphqldoc
npx graphqldoc -e https://gql.twitch.tv/gql -x \"Client-Id: kimne78kx3ncx6brgo4mv6wki5h1ko\" -o ./docs
# Now host it! I prefer using Python 3's http.server.
python3 -m http.server --directory docs/

BTW: If the schema on this repository is out-of-date, update it and the docs with pnpm run build and make a pull request.

Tools Used

Inspiration & Help

License

This entire repository is licensed under the I Solemny Swear That I Am Up To No Good Public License, a modification of the WTFPL by d0nk for the release of parler-tricks, effectively releasing this body of work into the public domain.

Open Source Agenda is not affiliated with "SuperSonicHub1 Twitch Graphql Api" Project. README Source: SuperSonicHub1/twitch-graphql-api

Open Source Agenda Badge

Open Source Agenda Rating