Grammer checker API

POST https://www.simply.co/api/grammer-checker/

Headers

Name
Type
Description

api-key

string

Authentication token

Request Body

Name
Type
Description

sentence

string

sentence to find grammer error and check them

{
    "text": "Donald Trump lose the presendential election, Joe Biden is the new president of Amrica.",
    "result": "Donald Trump loses the presidential election, Joe Biden is the new president of America.",
    "corrections": [
        {
            "start": 80,
            "text": "Amrica",
            "correct": "America",
            "definition": "North American republic containing 50 states - 48 conterminous states in North America plus Alaska in northwest North America and the Hawaiian Islands in the Pacific Ocean; achieved independence in 1776"
        },
        {
            "start": 22,
            "text": "presendential",
            "correct": "presidential",
            "definition": "relating to a president or presidency"
        },
        {
            "start": 13,
            "text": "lose",
            "correct": "loses",
            "definition": null
        }
    ]
}

Last updated