Skip to main content

Grammar Checker

Check and correct grammar in text content using various AI models through the 1min.AI API. This endpoint provides automated grammar checking and correction for improving text quality and readability.

Available Models

Loading available models...

Request Parameters

All models share the same request structure:

Field NameTypeSupported ValueDescriptionRequired
typetextGRAMMAR_CHECKERFeature name✔️
modeltextSee available modelsModel identifier✔️
conversationIdtextGRAMMAR_CHECKERConversation ID✔️
promptObject.promptstringThis sentence have some grammar mistake that need to be fix by the AI model for better readability.Text to check for grammar✔️

Endpoint

Request Headers

FieldValue
API-KEY<api-key>
Content-Typeapplication/json

Code Example

curl --location 'https://api.1min.ai/api/features' \
--header 'API-KEY: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"type": "GRAMMAR_CHECKER",
"model": "gpt-4o",
"conversationId": "GRAMMAR_CHECKER",
"promptObject": {
"prompt": "This sentence have some grammar mistake that need to be fix by the AI model for better readability."
}
}'

Interactive Playground

Try the API directly in your browser:

Loading interactive playground...

Response Format

{}