# Thesaurus Get {word}

> Returns synonyms and antonyms for the given word.

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

---


## Endpoint

**GET https://requiems.xyz/v1/text/thesaurus/{word}**

## Thesaurus Lookup

Returns synonyms and antonyms for the given word.

## Parameters

| Name | Type | Required | Location | Description |
| ---- | ---- | -------- | -------- | ----------- |
| `word` | string | yes | path | The word to look up in the thesaurus |

## Response Example

```json
{
  "data": {
    "word": "happy",
    "synonyms": ["joyful", "cheerful", "content", "pleased", "delighted", "glad", "elated", "blissful"],
    "antonyms": ["sad", "unhappy", "miserable", "sorrowful", "dejected", "gloomy", "melancholy"]
  },
  "metadata": {
    "timestamp": "2026-01-01T00:00:00Z"
  }
}
```

## Response Fields

| Field | Type | Description |
| ----- | ---- | ----------- |
| `word` | string | The normalized (lowercased) word that was looked up |
| `synonyms` | array<string> | List of words with similar meaning |
| `antonyms` | array<string> | List of words with opposite meaning |

## Errors

- `404` **not_found** — The word was not found in the thesaurus dataset.
- `400` **bad_request** — The word path parameter is missing.

