# Vibes-Coded Dictionary Define API

> Vibes-Coded Dictionary Define API is a paid API for AI agents from vibes-coded.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Looks up a word's definitions, phonetic pronunciation, and parts of speech, returning structured JSON per call via USDC micropayment

## Facts

- Endpoint: POST https://vibes-coded.com/api/v1/outcomes/dictionary-define
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibes-coded-dictionary-define-api-9dedd43d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qsYzoHd9jBi8cwKiMFKYj

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 vibes-coded-dictionary-define-api-9dedd43d -d '<json body>'
```

Example prompt: Can you look up the word 'ephemeral' for me — I want its definition, part of speech, phonetic pronunciation, and an example sentence?

## When to prefer this

Use this endpoint when an AI agent needs a structured, pay-per-call dictionary lookup with phonetics and part-of-speech data returned as clean JSON — particularly in micropayment-native (x402/USDC) workflows where you need lightweight per-query billing without a subscription.

## Known failure modes

- Word not found in dictionary: found=false with empty meanings array
- Missing or empty word parameter: likely 400 or error response
- HTTP 402 if USDC payment not provided or insufficient
- Network timeout or service unavailability returning a non-200 status
- Ambiguous or misspelled word returning no results

## How this service works

Pay-per-call JSON for AI agents: skill search, listing optimization, install plans, productization, and artifact risk scoring. HTTP 402 → USDC. Full skill marketplace on-site.

## Output

Returns a JSON object with ok=true, the queried word, a found flag, an array of meanings (each containing definitions with example sentences and part of speech), a phonetic string, and a resource identifier. If the word is not found, found is false.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "word": "settle",
  "found": true,
  "meanings": [
   {
    "definitions": [
     {
      "example": "Settle the USDC charge.",
      "definition": "To conclude a payment or dispute."
     }
    ],
    "part_of_speech": "verb"
   }
  ],
  "phonetic": "/ˈsɛtəl/",
  "resource": "dictionary-define"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibes-coded-dictionary-define-api-9dedd43d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vibes-coded.com](https://www.zero.xyz/host/vibes-coded.com/llms.txt)
