Sign in

Execute GraphQL query (beta)

documented

Submit GraphQL queries/mutations to the beta Thinkific GraphQL API.

POST /beta/graphqlGraphQLno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.thinkific.com/beta/graphql" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"query": "query SiteQuery($first: Int) { site { courses(first: $first) { edges { node { id title } } } } }", "variables": {"first": {{$first}}}}'