A public JSON API for Wordle. This repo also includes a frontend made with Vue.js.
See it in action here.
The original Wordle game only allows you to play 1 game per day. It is also extremely easy to cheat as the answer to the puzzle is sent to the client before it has been solved.
This version solves these issues.
What's notable about this rendition of Wordle is that all of the guessing happens through a server-side JSON api.
This means that it is impossible to cheat, the answer is never stored in the browser before the puzzle has been finished.
Even looking at the backend source code will not reveal the answer, as the wordlist is shuffled before it is inserted into the database.
You can use the public API to make your own Wordle game! Also feel free to copy the backend code and self-host it.
If you need any help with using this API, please open an issue!
{
"wordID": int
}
If you don't include wordID
, a random word is chosen.
{
"id": int,
"key": string,
"wordID": int
}
id
is a unique ID for this game.
key
is a random string used to validate future actions for this game.
wordID
is a unique ID identifying this word. You can use this ID to play the same game again, without leaking the answer.
{
"id": int,
"key": string,
"guess": string
}
[
{
"letter": char,
"status": int
},
...
]
status
is an int of value 0
, 1
, or 2
. 0
means the letter is not present in the word. 1
means the letter is present in the word. 2
means the letter is present in the word and is in the correct position.
For example: ⬛🟨🟨🟩⬛ is represented as 0 1 1 2 0
400 Bad Request
if the word is the wrong length, contains non-letters, or is not in the dictionary403 Forbidden
if the game has been finished, or already has 6 guesses
{
"id": int,
"key": string
}
{
"answer": string
}
After calling this, you will be unable to make more guesses as the answer has been revealed.
python3 -m venv .venv
. .venv/bin/activate
python3 -m pip install --upgrade wheel pip
python3 -m pip install -r requirements.txt -r requirements-dev.txt
pre-commit install
python3 init.py
FLASK_DEBUG=1 flask run --cert=adhoc --host=0.0.0.0
The dev server is accessible on https://localhost:5000.
https is necessary for the async clipboard API to work on IOS. You may have to click through a warning about an invalid certificate.