Catalog108 / challenges / api/graphql/no-introspection

GraphQL, introspection disabled

advanced Matching curriculum →

What this challenge teaches

Teaches: Same data as the playground endpoint, but __schema/__type queries are rejected.

Expected output: Without introspection, infer the schema from the page's example queries / JS bundle.

Submit your scraper's JSON output to /challenges/api/graphql/no-introspection/grade (grader endpoint is part of a later phase; URL is reserved now).

# Same schema as /api/graphql, but __schema/__type queries are rejected.
# You'd discover the shape from this page's example queries or the JS bundle.

curl -sX POST -H "Content-Type: application/json" \
  -d '{"query":"{ products(limit: 3) { id name price brand } }"}' \
  "https://practice.scrapingcentral.com/api/graphql/no-introspection"