SudokuAPI - Endpoints

/v1/solve

Input example


            {
                "payload": "900000000060000000027008000000000307890300000301020580000100800080075602010600009"
            }
            

Output example


            {
                "original": "900000000060000000027008000000000307890300000301020580000100800080075602010600009",
                "solved": "938764125564291738127538964245816397896357241371429586659142873483975612712683459",
                "iterations": 5876,
                "passes": 2
            }
            

/v1/check

Input example


            {
                "payload": "999900000060000000027008000000000307890300000301020580000100800080075602010600009"
            }
            

Output example


            {
            "original": "999900000060000000027008000000000307890300000301020580000100800080075602010600009",
            "reason": "Invalid clues.",
            "solvable": false
            }