Catalog108 / challenges / api/rest/simple
Plain JSON GET endpoint
What this challenge teaches
Teaches: Hit a JSON endpoint, parse the response. The simplest possible API call.
Expected output: GET /challenges/api/rest/simple with Accept: application/json (or ?json=1) → {"hello":"catalog108"...}
Submit your scraper's JSON output to /challenges/api/rest/simple/grade
(grader endpoint is part of a later phase; URL is reserved now).
Hit this URL with ?json=1 (or send Accept: application/json) to get the JSON.
curl -s "https://practice.scrapingcentral.com/challenges/api/rest/simple?json=1"