# ForgeMesh SEO Query Spell Corrector

> ForgeMesh SEO Query Spell Corrector is a paid API for AI agents from seo.forgemesh.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Detects and corrects likely spelling errors in an SEO search query, returning the corrected query and whether a change was made

## Facts

- Endpoint: GET https://seo.forgemesh.io/v1/query-correct
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-seo-query-spell-corrector-aae695f4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6Wv6H7JFoqSKx-QR35NmL

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 forgemesh-seo-query-spell-corrector-aae695f4
```

Example prompt: Can you spell-check this SEO query for me — 'best runnung shooes for marathons' — and tell me if it needs to be corrected and what the corrected version is?

## When to prefer this

Use this endpoint when you need lightweight, deterministic spell-checking specifically tuned for SEO queries and search terms, rather than general-purpose spell checkers. It is ideal for preprocessing user-submitted keywords before keyword research, content gap analysis, or ranking audits. Prefer it over general NLP spell-checkers when operating within the ForgeMesh SEO toolchain, as it is designed to understand search intent vocabulary.

## Known failure modes

- Missing required 'q' query parameter returns an error
- Empty string input may return unchanged query or an error
- Non-string or malformed query parameter may cause a 400-level error
- Highly domain-specific or invented terms may be incorrectly 'corrected' to common words
- Rate limiting or payment failure may result in a 402 or 429 response

## How this service works

Correct likely spelling errors in an SEO query

## Output

Returns a JSON object with a boolean 'changed' field indicating whether the query was modified, and a 'corrected_query' string containing the spell-corrected version of the input query (or the original if no corrections were needed).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "changed": {
       "type": "boolean"
      },
      "corrected_query": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "changed": true,
  "corrected_query": "seo authority"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-seo-query-spell-corrector-aae695f4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from seo.forgemesh.io](https://www.zero.xyz/host/seo.forgemesh.io/llms.txt)
