# Dictionary Post Batch

> Resolve multiple words in a single request. Returns dictionary entries when found, or error information when a word is not in the dataset.

- Skill: `gabrielmoreira/dictionary-post-batch` (Agent Skill)
- Install (CLI): `npx skillmds@latest add gabrielmoreira/dictionary-post-batch`
- Raw SKILL.md: https://api.skillmd.com/api/skills/gabrielmoreira/dictionary-post-batch/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: gabrielmoreira (https://skillmd.com/u/gabrielmoreira)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/gabrielmoreira/dictionary-post-batch

---


## Endpoint

**POST https://requiems.xyz/v1/text/words/batch**

## Batch Define Words

Resolve multiple words in a single request. Returns dictionary entries when found, or error information when a word is not in the dataset.

## Parameters

| Name | Type | Required | Location | Description |
| ---- | ---- | -------- | -------- | ----------- |
| `items` | array<string> | yes | body | List of words to look up in batch (max 50 items) |

## Request Example

```json
{
  "items": ["ephemeral", "serendipity", "melancholy"]
}
```

## Response Example

```json
{
  "data": {
    "results": [
      {
        "word": "serendipity",
        "found": true,
        "entry": {
          "word": "serendipity",
          "phonetic": "/ˌserənˈdipədē/",
          "definitions": [
            {
              "part_of_speech": "noun",
              "definition": "the occurrence of events by chance in a happy way"
            }
          ],
          "synonyms": ["fluke", "chance", "fortuity"]
        }
      },
      {
        "word": "fakeword",
        "found": false,
        "error": "word not found: fakeword"
      }
    ],
    "total": 3
  },
  "metadata": {
    "timestamp": "2026-01-01T00:00:00Z"
  }
}
```

## Response Fields

| Field | Type | Description |
| ----- | ---- | ----------- |
| `results` | array<object> | List of batch lookup results |
| `total` | integer | Total number of items processed |

## Errors

- `undefined` **422** — Invalid or empty items array

