How to complete the challenge GET /api/challenger/guid (existing X-CHALLENGER)

Use GET /api/challenger/{guid} to retrieve your current challenger progress as JSON.

The {guid} in the URL should match the active X-CHALLENGER value. The response body is the progress payload you can later send back to PUT /api/challenger/{guid}.

This is useful when you want to save your challenge progress outside the browser.

Try it now

GET /api/challenger/{guid} with X-CHALLENGER to get current progress

Lessons Learned

  • GET /api/challenger/{guid} with an existing X-CHALLENGER exports progress for the current session.
  • The URL guid and header session need to be understood separately when testing state endpoints.
  • The response is useful as a portable snapshot of challenge completion.

Suggested Experiments

  • Compare the exported progress before and after completing a challenge in the same session.
  • Send the same URL while changing X-CHALLENGER and observe which session the API reports.
Experiment with this endpoint