web
Multiplayer wordle
Guess the WORDLE in six tries. Each guess must be a valid five-letter word.
The highlight will show how close you are using [] square brackets for correct positions and {} parenthesis for letters in the word but in the wrong position, anything not highlighted is incorrect.
Make a guess
When does the next game start
Guess Request
Response
{
"correct": false,
"tries_left": 0,
"guesses": [
{
"word": "noise",
"highlight": "no{i}[s]e",
"chars": [
{
"letter": "n",
"position": 0,
"correct": false,
"in_word": false
},
{
"letter": "o",
"position": 1,
"correct": false,
"in_word": false
},
{
"letter": "i",
"position": 2,
"correct": false,
"in_word": true
},
{
"letter": "s",
"position": 3,
"correct": true,
"in_word": true
},
{
"letter": "e",
"position": 4,
"correct": false,
"in_word": false
}
]
}
],
"answer": "tipsy",
"status": "Reached guess limit"
}