Challenges

Create a New Challenge

POST /challenge/new

Create a challenge.

Headers

NameValue

Content-Type

question

<question>

answer

<answer>

Response

{
  "key:" "CHALLENGE KEY"
}

Solve a Challenge

POST /challenge/solve

Attempt to solve a challenge.

Headers

NameValue

Content-Type

application/json

key

<challenge key>

a

<answer>

Response

{
  success: true // or false
}

Get the Question

GET /challenge/q

Get a challenge's question.

Headers

NameValue

key

<key>

Response

This endpoint returns plain text!

The question

Last updated