cpbox-spellcheck
/install cpbox-spellcheck
Spellcheck
Paid Spellcheck proxy via x402 pay-per-use (HTTP 402).
Prerequisites: This skill requires x402-payment. Complete the setup steps before first use.
Security: Documentation only — no executable code or credentials. Wallet/keys stay on your machine; never stored here.
Service URLs
| Role | Domain |
|---|---|
| API Provider | https://www.cpbox.io |
| Facilitator | https://www.cppay.finance |
Endpoint (Agent Interface)
GET /api/x402/spellcheck
Payment Flow (x402 Protocol)
- First request ->
402 Payment Requiredwith requirements JSON - Sign & retry with
PAYMENT-SIGNATURE-> result JSON
With @springmint/x402-payment or x402-sdk-go, payment is automatic.
Quick Start (cURL)
curl -s "https://www.cpbox.io/api/x402/spellcheck" \
-H "Accept: application/json" \
-G \
--data-urlencode "q=artifical inteligence" \
--data-urlencode "lang=en" \
--data-urlencode "country=US"
Using with x402-payment
npx @springmint/x402-payment \
--url "https://www.cpbox.io/api/x402/spellcheck?q=artifical%20inteligence&lang=en&country=US" \
--method GET
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
q |
string | Yes | — | Query to spell check (1-400 chars, max 50 words) |
lang |
string | No | en |
Language preference (2+ char language code, e.g. en, fr, de, pt-br, zh-hans). 51 codes supported |
country |
string | No | US |
Search country (2-letter country code or ALL) |
Response Fields
| Field | Type | Description |
|---|---|---|
type |
string | Always "spellcheck" |
query.original |
string | The input query as submitted |
results |
array | Spell-corrected suggestions. May be empty when no correction is found |
results[].query |
string | A corrected version of the query |
Example Response
{
"type": "spellcheck",
"query": {
"original": "artifical inteligence"
},
"results": [
{
"query": "artificial intelligence"
}
]
}
Use Cases
- Pre-search query cleanup: Check spelling before deciding which search endpoint to call
- "Did you mean?" UI: Show users a corrected suggestion before running the search
- Batch query normalization: Clean up user inputs in bulk
Notes
- Built-in alternative: Web Search and LLM Context have
spellcheck=trueby default — use this standalone endpoint only when you need the correction before searching - Context-aware: Corrections consider the full query context, not just individual words
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install cpbox-spellcheck - After installation, invoke the skill by name or use
/cpbox-spellcheck - Provide required inputs per the skill's parameter spec and get structured output
What is cpbox-spellcheck?
USE FOR spell correction. Returns corrected query if misspelled. Most search endpoints have spellcheck built-in; use this only for pre-search query cleanup o... It is an AI Agent Skill for Claude Code / OpenClaw, with 163 downloads so far.
How do I install cpbox-spellcheck?
Run "/install cpbox-spellcheck" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is cpbox-spellcheck free?
Yes, cpbox-spellcheck is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does cpbox-spellcheck support?
cpbox-spellcheck is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created cpbox-spellcheck?
It is built and maintained by springmint (@sprintmint); the current version is v1.0.0.