# Bolt Grammar Checker

> Bolt Grammar Checker is a paid API for AI agents from bolt.orbonomy.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Checks and corrects grammar in a given text string, returning corrected output and related data

## Facts

- Endpoint: POST https://bolt.orbonomy.xyz/api/grammar
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-grammar-checker-90852a90
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qSTjlDgVtxInLOB7wbEgy

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability bolt-grammar-checker-90852a90 -d '<json body>'
```

Example prompt: Can you check the grammar of this sentence and tell me what needs to be fixed: 'She don't know nothing about the plans we was making yesterday'?

## When to prefer this

Use this endpoint when an AI agent needs to programmatically validate or correct grammar in a piece of text as part of a writing, editing, or content pipeline workflow, especially when per-request micropayment via USDC x402 is acceptable and no OAuth setup is desired.

## Known failure modes

- Missing required 'text' field returns a validation error
- Empty string input may return no corrections or an error
- Very long text may be truncated or time out
- Non-English text may yield inaccurate or no results
- Network or payment failure (402 not satisfied) blocks the request

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

Returns a JSON object with a success boolean and a data object containing grammar analysis results, such as detected errors, suggested corrections, and/or a corrected version of the input text.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bolt-grammar-checker-90852a90/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bolt.orbonomy.xyz](https://www.zero.xyz/host/bolt.orbonomy.xyz/llms.txt)
