# Suverse Dictionary API

> Suverse Dictionary API is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Returns definitions, phonetics, parts of speech, synonyms, and example sentences for any English word using the free Dictionary API.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-dictionary
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-dictionary-api-f8af75bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A_QnK8xCfhPLsVabVAF4f

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 suverse-dictionary-api-f8af75bd -d '<json body>'
```

Example prompt: Can you look up the word 'ephemeral' and give me its definitions, part of speech, phonetic spelling, and some example sentences?

## When to prefer this

Choose this endpoint when you need free, keyless English dictionary data including definitions, phonetics, parts of speech, and synonyms for AI agents in language, education, or writing contexts. Prefer this over paid lexical APIs when no API key management is desired and the use case is standard English word lookup.

## Known failure modes

- Word not found in the dictionary — returns a 404 or empty result for obscure, misspelled, or non-English words
- Network or proxy timeout on the upstream Free Dictionary API
- Malformed request body missing required 'input' field returns a validation error
- Proper nouns, abbreviations, or slang terms may return no results

## How this service works

Definitions, phonetics, and examples for an English word from the free Dictionary API, no key. Returns meanings, parts of speech, and synonyms. For AI agents in language, education, and writing tools.

## Output

Returns a structured dictionary entry for the queried word, including one or more meanings grouped by part of speech (noun, verb, adjective, etc.), definitions, example sentences, phonetic transcriptions, and lists of synonyms and antonyms where available.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-dictionary-api-f8af75bd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
