> For the complete documentation index, see [llms.txt](https://harishsg99.gitbook.io/simplyapi/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://harishsg99.gitbook.io/simplyapi/untitled.md).

# Grammer checker API

<mark style="color:green;">`POST`</mark> `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 |

{% tabs %}
{% tab title="200 " %}

```
{
    "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
        }
    ]
}
```

{% endtab %}
{% endtabs %}
