# Bolt Grammar Checker

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

Checks and corrects grammar in a given text string, returning grammar analysis or corrected text.

## Facts

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

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-ce58a495 -d '<json body>'
```

Example prompt: Can you check the grammar of this sentence and fix any mistakes: 'She don't know where is the keys that she left yesterday on the table'?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-use grammar check without committing to a subscription-based NLP service. Ideal for AI agents that occasionally need grammar validation as part of a larger workflow, especially when integrated with x402 micropayment infrastructure for cost-effective per-request billing.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string may return an error or trivial success response
- Extremely long text may be truncated or rejected
- Non-English text may produce inaccurate or unexpected results
- Service unavailability returns HTTP 402 or 5xx if payment fails

## 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, which likely includes identified errors, corrections, and/or the corrected version of the submitted 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-ce58a495/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from v0-bolt.orbonomy.xyz](https://www.zero.xyz/host/v0-bolt.orbonomy.xyz/llms.txt)
